diff --git a/Barotrauma/BarotraumaShared/Content/Items/Button/button.xml b/Barotrauma/BarotraumaShared/Content/Items/Button/button.xml index c7a486d09..3f6353b28 100644 --- a/Barotrauma/BarotraumaShared/Content/Items/Button/button.xml +++ b/Barotrauma/BarotraumaShared/Content/Items/Button/button.xml @@ -26,7 +26,7 @@ - @@ -58,7 +58,7 @@ - diff --git a/Barotrauma/BarotraumaShared/Content/Items/Electricity/signalitems.xml b/Barotrauma/BarotraumaShared/Content/Items/Electricity/signalitems.xml index 503199f8a..b02f10d62 100644 --- a/Barotrauma/BarotraumaShared/Content/Items/Electricity/signalitems.xml +++ b/Barotrauma/BarotraumaShared/Content/Items/Electricity/signalitems.xml @@ -131,7 +131,7 @@ - @@ -166,7 +166,7 @@ - @@ -200,7 +200,7 @@ - @@ -239,7 +239,7 @@ - @@ -279,7 +279,7 @@ - @@ -312,7 +312,7 @@ - @@ -346,7 +346,7 @@ - @@ -377,7 +377,7 @@ - @@ -408,7 +408,7 @@ - @@ -439,7 +439,7 @@ - @@ -473,7 +473,7 @@ - @@ -506,7 +506,7 @@ - @@ -539,7 +539,7 @@ - @@ -568,7 +568,7 @@ - @@ -601,7 +601,7 @@ - diff --git a/Barotrauma/BarotraumaShared/Content/Items/Weapons/explosives.xml b/Barotrauma/BarotraumaShared/Content/Items/Weapons/explosives.xml index ab1f171da..0656bba51 100644 --- a/Barotrauma/BarotraumaShared/Content/Items/Weapons/explosives.xml +++ b/Barotrauma/BarotraumaShared/Content/Items/Weapons/explosives.xml @@ -90,7 +90,7 @@ - + diff --git a/Barotrauma/BarotraumaShared/Source/Utils/ToolBox.cs b/Barotrauma/BarotraumaShared/Source/Utils/ToolBox.cs index 0b58d62b7..43e1a0c24 100644 --- a/Barotrauma/BarotraumaShared/Source/Utils/ToolBox.cs +++ b/Barotrauma/BarotraumaShared/Source/Utils/ToolBox.cs @@ -106,7 +106,7 @@ namespace Barotrauma public static string ConvertInputType(string inputType) { if (inputType == "ActionHit" || inputType == "Action") return "Use"; - if (inputType == "SecondarHit" || inputType == "Secondary") return "Aim"; + if (inputType == "SecondaryHit" || inputType == "Secondary") return "Aim"; return inputType; }