v2.0.0: fixed unintentionally commited debug code for Goo's damage

This commit is contained in:
Evan Debenham
2023-02-03 11:31:27 -05:00
parent f0bff6ce3f
commit dc209e09e4

View File

@@ -66,8 +66,8 @@ public class Goo extends Mob {
@Override
public int damageRoll() {
int min = 0;
int max = 0;
int min = 1;
int max = (HP*2 <= HT) ? 12 : 8;
if (pumpedUp > 0) {
pumpedUp = 0;
if (enemy == Dungeon.hero) {