Merge remote-tracking branch 'origin/master'

This commit is contained in:
Anuken
2025-05-01 17:12:24 -04:00
2 changed files with 2 additions and 2 deletions

View File

@@ -81,7 +81,7 @@ public class UnitCommand extends MappableContent{
ai.onlyAssist = true;
return ai;
});
mineCommand = new UnitCommand("mine", "production", Binding.unitCommandNine, u -> new MinerAI()){{
mineCommand = new UnitCommand("mine", "production", Binding.unitCommandMine, u -> new MinerAI()){{
refreshOnSelect = true;
}};
boostCommand = new UnitCommand("boost", "up", Binding.unitCommandBoost, u -> new BoostAI()){{

View File

@@ -57,7 +57,7 @@ public class Binding{
unitCommandRepair = KeyBind.add("unit_command_repair", KeyCode.unset),
unitCommandRebuild = KeyBind.add("unit_command_rebuild", KeyCode.unset),
unitCommandAssist = KeyBind.add("unit_command_assist", KeyCode.unset),
unitCommandNine = KeyBind.add("unit_command_mine", KeyCode.unset),
unitCommandMine = KeyBind.add("unit_command_mine", KeyCode.unset),
unitCommandBoost = KeyBind.add("unit_command_boost", KeyCode.unset),
unitCommandEnterPayload = KeyBind.add("unit_command_enter_payload", KeyCode.unset),
unitCommandLoadUnits = KeyBind.add("unit_command_load_units", KeyCode.unset),