Skip to content

Commit 13bb97f

Browse files
Spelling mistake
1 parent f2c7618 commit 13bb97f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

java/src/s2/RobotPlayer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ public static void run(RobotController rc) throws GameActionException {
66
GenericRobotContoller processor;
77
switch (rc.getType()) {
88
case SOLDIER:
9-
processor = new Solider(rc);
9+
processor = new Soldier(rc);
1010
break;
1111
case MOPPER:
1212
processor = new Mopper(rc);

java/src/s2/Solider.java java/src/s2/Soldier.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import battlecode.common.*;
44

5-
public class Solider implements GenericRobotContoller {
5+
public class Soldier implements GenericRobotContoller {
66
boolean isBuildingRuin = false;
77
boolean isBuildingSRP = false;
88
boolean SRP_built = false;
@@ -12,7 +12,7 @@ public class Solider implements GenericRobotContoller {
1212
Pathing pathing_engine;
1313
boolean buildPaintTowerNext = false;
1414

15-
public Solider(RobotController handler) throws GameActionException {
15+
public Soldier(RobotController handler) throws GameActionException {
1616
rc = handler;
1717
pathing_engine = new Pathing(handler);
1818
SRP_pattern = rc.getResourcePattern();

0 commit comments

Comments
 (0)