Fix invisible turret and broken RTG generators

This commit is contained in:
Anuken
2017-12-17 10:34:30 -05:00
parent 9f9f153125
commit 1b3d964b83
9 changed files with 25 additions and 6 deletions

View File

@@ -46,6 +46,7 @@ public class BlastEnemy extends Enemy{
Bullet b = new Bullet(BulletType.blast, this, x, y, 0).add();
b.damage = BulletType.blast.damage + (tier-1) * 40;
damage(999);
remove();
}
}

View File

@@ -85,6 +85,7 @@ public class HealerEnemy extends Enemy{
Bullet b = new Bullet(BulletType.blast, this, x, y, 0).add();
b.damage = BulletType.blast.damage + (tier-1) * 30;
damage(999);
remove();
}
}