From 2496ce3527e7fc6b03f16c3cdee1c10d3c474366 Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Sun, 5 Feb 2017 11:34:55 +0000 Subject: [PATCH] Set default delay to 0. --- OpenRA.Mods.Common/Traits/KillsSelf.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Mods.Common/Traits/KillsSelf.cs b/OpenRA.Mods.Common/Traits/KillsSelf.cs index 79f2f562a4..d9bc193970 100644 --- a/OpenRA.Mods.Common/Traits/KillsSelf.cs +++ b/OpenRA.Mods.Common/Traits/KillsSelf.cs @@ -19,7 +19,7 @@ namespace OpenRA.Mods.Common.Traits public readonly bool RemoveInstead = false; [Desc("The amount of time (in ticks) before the actor dies. Two values indicate a range between which a random value is chosen.")] - public readonly int[] Delay = { 250 }; + public readonly int[] Delay = { 0 }; public override object Create(ActorInitializer init) { return new KillsSelf(init.Self, this); } }