From 4c587b386be83e73c06d4914fdb3e576ff215108 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Mon, 4 Jul 2022 15:04:38 -0400 Subject: [PATCH] v1.3.0: fixed incorrect alias for fallbleed --- .../shatteredpixeldungeon/ShatteredPixelDungeon.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ShatteredPixelDungeon.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ShatteredPixelDungeon.java index 0baa2e2d7..44ebd2472 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ShatteredPixelDungeon.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ShatteredPixelDungeon.java @@ -48,7 +48,7 @@ public class ShatteredPixelDungeon extends Game { //pre-v1.3.0 com.watabou.utils.Bundle.addAlias( com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Bleeding.class, - "com.shatteredpixel.shatteredpixeldungeon.levels.features.Chasm$FallBleed.class" ); + "com.shatteredpixel.shatteredpixeldungeon.levels.features.Chasm$FallBleed" ); com.watabou.utils.Bundle.addAlias( com.shatteredpixel.shatteredpixeldungeon.plants.Mageroyal.class, "com.shatteredpixel.shatteredpixeldungeon.plants.Dreamfoil" );