diff --git a/Languages/English/Keyed/Stats.xml b/Languages/English/Keyed/Stats.xml index 0fe035aee1..f609818007 100644 --- a/Languages/English/Keyed/Stats.xml +++ b/Languages/English/Keyed/Stats.xml @@ -9,5 +9,7 @@ Additional material toughness multiplier: Wielder skill effect: Long range radio + Picks the lowest value of available + Picks the highest value of available \ No newline at end of file diff --git a/Source/CombatExtended/CombatExtended/StatParts/StatPart_StatMaxima.cs b/Source/CombatExtended/CombatExtended/StatParts/StatPart_StatMaxima.cs index ea29135525..7c2aaf45cc 100644 --- a/Source/CombatExtended/CombatExtended/StatParts/StatPart_StatMaxima.cs +++ b/Source/CombatExtended/CombatExtended/StatParts/StatPart_StatMaxima.cs @@ -18,7 +18,7 @@ protected override float Select(float first, float second) public override string ExplanationPart(StatRequest req) { - return "Picks the highest value of available: \n\n" + base.ExplanationPart(req); + return "CE_StatPart_MaximaExplanation".Translate() + ": \n\n" + base.ExplanationPart(req); } } } diff --git a/Source/CombatExtended/CombatExtended/StatParts/StatPart_StatMinima.cs b/Source/CombatExtended/CombatExtended/StatParts/StatPart_StatMinima.cs index 8ec1969d81..bed60969f7 100644 --- a/Source/CombatExtended/CombatExtended/StatParts/StatPart_StatMinima.cs +++ b/Source/CombatExtended/CombatExtended/StatParts/StatPart_StatMinima.cs @@ -2,6 +2,7 @@ using System.Runtime.CompilerServices; using RimWorld; using UnityEngine; +using Verse; namespace CombatExtended { @@ -15,7 +16,7 @@ protected override float Select(float first, float second) public override string ExplanationPart(StatRequest req) { - return "Picks the lowest value of available: \n\n" + base.ExplanationPart(req); + return "CE_StatPart_MinimaExplanation".Translate() + ": \n\n" + base.ExplanationPart(req); } } }