From e50b0b193d04fe4619f749acd02320806f108d06 Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Sat, 29 Sep 2018 18:01:14 +0100 Subject: [PATCH] Disable sabotaging by default. --- OpenRA.Mods.Common/Traits/Captures.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Mods.Common/Traits/Captures.cs b/OpenRA.Mods.Common/Traits/Captures.cs index cda7f7e9a8..40d13fde67 100644 --- a/OpenRA.Mods.Common/Traits/Captures.cs +++ b/OpenRA.Mods.Common/Traits/Captures.cs @@ -27,7 +27,7 @@ namespace OpenRA.Mods.Common.Traits [Desc("Targets with health above this percentage will be sabotaged instead of captured.", "Set to 0 to disable sabotaging.")] - public readonly int SabotageThreshold = 50; + public readonly int SabotageThreshold = 0; [Desc("Sabotage damage expressed as a percentage of maximum target health.")] public readonly int SabotageHPRemoval = 50;