From 0e7ba4e567459a3de0a165c63263e332279f650d Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Fri, 12 Jun 2020 10:44:15 -0400 Subject: [PATCH] v0.8.1: fixed save/load errors with golem teleport mechanics --- .../shatteredpixeldungeon/actors/mobs/Golem.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Golem.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Golem.java index d7321dff1..d32d6ad30 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Golem.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Golem.java @@ -94,9 +94,9 @@ public class Golem extends Mob { private int selfTeleCooldown = 0; private int enemyTeleCooldown = 0; - private static final String TELEPORTING = "vent_cooldown"; + private static final String TELEPORTING = "teleporting"; private static final String SELF_COOLDOWN = "self_cooldown"; - private static final String ENEMY_COOLDOWN = "vent_cooldown"; + private static final String ENEMY_COOLDOWN = "enemy_cooldown"; @Override public void storeInBundle(Bundle bundle) {