Skip to content

Commit

Permalink
Fixed build errors of missing commas
Browse files Browse the repository at this point in the history
  • Loading branch information
meganroxburgh committed Sep 9, 2023
1 parent fba189a commit 111f022
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,11 @@ public class ForestGameArea extends GameArea {
"images/economy/crystal.png",
"images/economy/econ-tower.png",
"images/towers/mine_tower.png",
"images/towers/TNTTower.png"
"images/towers/TNTTower.png",
"images/economy/scrap.png",
"images/towers/mine_tower.png"
};

private static final String[] forestTextureAtlases = {
"images/economy/econ-tower.atlas",
"images/terrain_iso_grass.atlas",
Expand All @@ -109,7 +110,7 @@ public class ForestGameArea extends GameArea {
"images/mobs/rangeBossRight.atlas",
"images/towers/TNTTower.atlas",
"images/projectiles/basic_projectile.atlas",
"images/projectiles/mobProjectile.atlas"
"images/projectiles/mobProjectile.atlas",
"images/mobs/rangeBossRight.atlas"
};
private static final String[] forestSounds = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ public class MobAttackTask extends DefaultTask implements PriorityTask {
private static final int INTERVAL = 1; // time interval to scan for towers in
private static final short TARGET = PhysicsLayer.HUMANS; // mobs detecting for towers

// private static final String STOW = "stowStart";
// private static final String DEPLOY = "deployStart";
private static final String STOW = "stowStart";
private static final String DEPLOY = "deployStart";
private static final String FIRING = "shootStart";
private static final String IDLE = "idleStart";

Expand Down

0 comments on commit 111f022

Please sign in to comment.