diff options
-rw-r--r-- | npc/025-1/ctrl.c | 4 |
1 files changed, 3 insertions, 1 deletions
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++) { |