From 99f3cdc1c44d34b9f84c79387ca9e209eafae0f4 Mon Sep 17 00:00:00 2001 From: Nat Quayle Nelson Date: Thu, 20 Feb 2025 18:13:39 -0600 Subject: [PATCH] Fix party invisible outdoors --- src/game/boe.graphutil.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/boe.graphutil.cpp b/src/game/boe.graphutil.cpp index bfc0ecb7..94a5ac50 100644 --- a/src/game/boe.graphutil.cpp +++ b/src/game/boe.graphutil.cpp @@ -437,7 +437,7 @@ void draw_party_symbol(location center) { if((is_town()) && (univ.party.town_loc.x > 70)) return; - if(center != univ.party.town_loc) { + if(is_town() && center != univ.party.town_loc) { if(!is_on_screen(univ.party.town_loc, center)) return; target.x += univ.party.town_loc.x - center.x;