fix party disappearing in huge town

This commit is contained in:
2025-08-06 10:26:21 -05:00
committed by Celtic Minstrel
parent afed802900
commit 5fbc4c7321

View File

@@ -448,7 +448,7 @@ void draw_party_symbol(location center) {
return; return;
if(!univ.party.is_alive()) if(!univ.party.is_alive())
return; return;
if((is_town()) && (univ.party.town_loc.x > 70)) if((is_town()) && (univ.party.town_loc.x > (univ.scenario.is_legacy ? 70 : LOC_UNUSED)))
return; return;
if(is_town() && center != univ.party.town_loc) { if(is_town() && center != univ.party.town_loc) {