CommandAI counter-attack timer
This commit is contained in:
@@ -14,7 +14,6 @@ public class UnitCommand{
|
||||
|
||||
public static final UnitCommand
|
||||
|
||||
//TODO they do not use the command "interface" or designation at all
|
||||
moveCommand = new UnitCommand("move", "right", u -> null),
|
||||
repairCommand = new UnitCommand("repair", "modeSurvival", u -> new RepairAI()),
|
||||
rebuildCommand = new UnitCommand("rebuild", "hammer", u -> new BuilderAI()),
|
||||
@@ -25,9 +24,6 @@ public class UnitCommand{
|
||||
}),
|
||||
mineCommand = new UnitCommand("mine", "production", u -> new MinerAI());
|
||||
|
||||
/** Default set of specified commands. */
|
||||
public static final UnitCommand[] defaultCommands = {moveCommand};
|
||||
|
||||
/** Unique ID number. */
|
||||
public final int id;
|
||||
/** Named used for tooltip/description. */
|
||||
|
||||
Reference in New Issue
Block a user