From 3b252327b9b042ad3bb882732c073ff1375b4c61 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Wed, 17 Nov 2021 21:50:47 -0500 Subject: [PATCH] v1.1.0: removed magical porter recipe from guidebook --- .../shatteredpixeldungeon/items/MerchantsBeacon.java | 2 +- .../shatteredpixeldungeon/items/spells/MagicalPorter.java | 1 + .../shatteredpixel/shatteredpixeldungeon/ui/QuickRecipe.java | 1 - 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/MerchantsBeacon.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/MerchantsBeacon.java index ad2606b82..015fb244e 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/MerchantsBeacon.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/MerchantsBeacon.java @@ -29,7 +29,7 @@ import com.watabou.noosa.audio.Sample; import java.util.ArrayList; -//TODO no longer sold in stores, decide what to do with this +//removed from drops, here for pre-1.1.0 saves public class MerchantsBeacon extends Item { private static final String AC_USE = "USE"; diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/spells/MagicalPorter.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/spells/MagicalPorter.java index 8b688fe06..aa040ad5b 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/spells/MagicalPorter.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/spells/MagicalPorter.java @@ -31,6 +31,7 @@ import com.shatteredpixel.shatteredpixeldungeon.utils.GLog; import java.util.ArrayList; +//beacon was removed from drops, here for pre-1.1.0 saves public class MagicalPorter extends InventorySpell { { diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/QuickRecipe.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/QuickRecipe.java index b45bf83b5..d7d824663 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/QuickRecipe.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/QuickRecipe.java @@ -368,7 +368,6 @@ public class QuickRecipe extends Component { result.add(new QuickRecipe(new ElixirOfArcaneArmor.Recipe())); return result; case 9: - result.add(new QuickRecipe(new MagicalPorter.Recipe())); result.add(new QuickRecipe(new PhaseShift.Recipe())); result.add(new QuickRecipe(new WildEnergy.Recipe())); result.add(new QuickRecipe(new BeaconOfReturning.Recipe()));