From 539ad6d5005127e7071178c28e4c5256f1072073 Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Wed, 15 May 2024 00:58:10 -0300 Subject: Do NOT increase Fortress Town victory count during Fires of Steam event --- npc/025-1/ctrl.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/npc/025-1/ctrl.c b/npc/025-1/ctrl.c index ad89aa134..6e855e772 100644 --- a/npc/025-1/ctrl.c +++ b/npc/025-1/ctrl.c @@ -464,7 +464,9 @@ OnConquest: if ($GAME_STORYLINE < 3) end; // Advance the victory count - $MK_TEMPVAR+=1; + // But ONLY if Fires of Steam is NOT running + if (!$FIRESOFSTEAM || $FIRESOFSTEAM >= 10) + $MK_TEMPVAR+=1; // Handle rewards in low priority freeloop(true); for (.@i=0; .@i < getarraysize($@FORT_BLACKLIST); .@i++) { -- cgit v1.2.3-70-g09d2