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); } }