From 0c06c86fb91ef3e748493a10827f406fc160ce7c Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Thu, 24 Apr 2014 23:36:54 -0700 Subject: [PATCH] do not kill the wrong nonstarters --- core/scripts/multis.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/scripts/multis.lua b/core/scripts/multis.lua index ad0b77783..e7157a40f 100644 --- a/core/scripts/multis.lua +++ b/core/scripts/multis.lua @@ -1,6 +1,6 @@ function kill_nonstarters() for f in factions() do - if f.lastturn==1 then + if f.lastturn==0 then kill_faction(f, true) end end