Commit 13bb97f 1 parent f2c7618 commit 13bb97f Copy full SHA for 13bb97f
File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ public static void run(RobotController rc) throws GameActionException {
6
6
GenericRobotContoller processor ;
7
7
switch (rc .getType ()) {
8
8
case SOLDIER :
9
- processor = new Solider (rc );
9
+ processor = new Soldier (rc );
10
10
break ;
11
11
case MOPPER :
12
12
processor = new Mopper (rc );
Original file line number Diff line number Diff line change 2
2
3
3
import battlecode .common .*;
4
4
5
- public class Solider implements GenericRobotContoller {
5
+ public class Soldier implements GenericRobotContoller {
6
6
boolean isBuildingRuin = false ;
7
7
boolean isBuildingSRP = false ;
8
8
boolean SRP_built = false ;
@@ -12,7 +12,7 @@ public class Solider implements GenericRobotContoller {
12
12
Pathing pathing_engine ;
13
13
boolean buildPaintTowerNext = false ;
14
14
15
- public Solider (RobotController handler ) throws GameActionException {
15
+ public Soldier (RobotController handler ) throws GameActionException {
16
16
rc = handler ;
17
17
pathing_engine = new Pathing (handler );
18
18
SRP_pattern = rc .getResourcePattern ();
You can’t perform that action at this time.
0 commit comments