From 8f90f975c46a6e08419a700f17a83c054ba46ac8 Mon Sep 17 00:00:00 2001 From: ephphatha Date: Mon, 29 May 2023 19:27:56 +1000 Subject: [PATCH] Always spawn at Farnham when returning from an arena level --- Source/quests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/quests.cpp b/Source/quests.cpp index 4c2958bd4..505497df0 100644 --- a/Source/quests.cpp +++ b/Source/quests.cpp @@ -530,7 +530,7 @@ Point GetMapReturnPosition() case SL_VILEBETRAYER: return Quests[Q_BETRAYER].position + Direction::South; default: - return Towners[TOWN_DRUNK].position + Displacement { 1, 0 }; + return GetTowner(TOWN_DRUNK)->position + Direction::SouthEast; } }