From 22adbee6a63d3fb1ee05d0e6ff41e80e95b4afc7 Mon Sep 17 00:00:00 2001 From: Robert Vollmert Date: Fri, 6 Nov 2009 19:32:09 +0100 Subject: Restore direct setting of you.position in arena. The call to set_position was triggering an ASSERT. --- crawl-ref/source/arena.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crawl-ref/source/arena.cc b/crawl-ref/source/arena.cc index 36da169eef..902407591f 100644 --- a/crawl-ref/source/arena.cc +++ b/crawl-ref/source/arena.cc @@ -866,7 +866,7 @@ namespace arena viewwindow(true, false); unwind_var pos(you.position); // Move hero offscreen. - you.set_position(coord_def(-1,-1)); + you.position.y = -1; you.time_taken = 10; // Make sure we don't starve. you.hunger = 10999; -- cgit v1.2.3-54-g00ecf