summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/arena.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/arena.cc')
-rw-r--r--crawl-ref/source/arena.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/crawl-ref/source/arena.cc b/crawl-ref/source/arena.cc
index f9f5752cd9..b85c54e588 100644
--- a/crawl-ref/source/arena.cc
+++ b/crawl-ref/source/arena.cc
@@ -362,8 +362,11 @@ namespace arena
you.mutation[MUT_ACUTE_VISION] = 3;
coord_def yplace(dgn_find_feature_marker(DNGN_ESCAPE_HATCH_UP));
- // Fix up the viewport.
+ // Fix up the viewport. Temporarily unset arena mode to avoid
+ // assertion.
+ crawl_state.arena = false;
you.moveto(yplace);
+ crawl_state.arena = true;
strcpy(you.your_name, "Arena");