fixed spell (#10751)

* Update Binding.java

* Update UnitCommand.java
This commit is contained in:
KochiyaUenehaaa 2025-05-01 23:57:57 +08:00 committed by GitHub
parent aecc3980fd
commit 3886bd972d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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),