From e8d4881e8904d0b8ae231978f81101059d2c81dc Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Sat, 2 Nov 2019 02:32:27 -0400 Subject: [PATCH] v0.8.0: added conversion for old shamans to DM-100s --- .../shatteredpixeldungeon/ShatteredPixelDungeon.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ShatteredPixelDungeon.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ShatteredPixelDungeon.java index 6504c61b5..1c13560f6 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ShatteredPixelDungeon.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ShatteredPixelDungeon.java @@ -115,6 +115,9 @@ public class ShatteredPixelDungeon extends Game { com.watabou.utils.Bundle.addAlias( com.shatteredpixel.shatteredpixeldungeon.actors.mobs.ArmoredBrute.class, "com.shatteredpixel.shatteredpixeldungeon.actors.mobs.Shielded"); + com.watabou.utils.Bundle.addAlias( + com.shatteredpixel.shatteredpixeldungeon.actors.mobs.DM100.class, + "com.shatteredpixel.shatteredpixeldungeon.actors.mobs.Shaman"); }