From 6bbd3e9e43fddca75b87d5bca1fc1a37faf87357 Mon Sep 17 00:00:00 2001 From: Robert Vollmert Date: Sat, 24 Oct 2009 16:26:48 +0200 Subject: Convert player::your_name to std::string. Doesn't seem to break anything... --- crawl-ref/source/arena.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crawl-ref/source/arena.cc') diff --git a/crawl-ref/source/arena.cc b/crawl-ref/source/arena.cc index 1c8037146c..2d03feb352 100644 --- a/crawl-ref/source/arena.cc +++ b/crawl-ref/source/arena.cc @@ -480,7 +480,7 @@ namespace arena you.moveto(yplace); crawl_state.arena = true; - strcpy(you.your_name, "Arena"); + you.your_name = "Arena"; you.hp = you.hp_max = 99; -- cgit v1.2.3-54-g00ecf