diff --git a/ai/strategies.lua b/ai/strategies.lua index e4e5144..1e71738 100644 --- a/ai/strategies.lua +++ b/ai/strategies.lua @@ -408,7 +408,7 @@ Strategies.functions = { split = function(data) Bridge.split(data and data.finished) - if not INTERNAL then + if Strategies.replay then splitNumber = splitNumber + 1 local timeDiff diff --git a/main.lua b/main.lua index 1c704dd..ce9803e 100644 --- a/main.lua +++ b/main.lua @@ -51,6 +51,7 @@ local function resetAll() if CUSTOM_SEED then Strategies.seed = CUSTOM_SEED + Strategies.replay = true p("RUNNING WITH A FIXED SEED ("..Strategies.seed.."), every run will play out identically!", true) else Strategies.seed = os.time()