From ec1062a650ebadd9f941d75eb61d00ab7b9a53b3 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Wed, 20 May 2015 10:50:38 -0400 Subject: [PATCH] v0.3.0: added support for cooking blandfruit with new seed --- .../shatteredpixeldungeon/items/food/Blandfruit.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/food/Blandfruit.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/food/Blandfruit.java index a65d4bd1d..ae570d03b 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/food/Blandfruit.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/food/Blandfruit.java @@ -257,6 +257,12 @@ public class Blandfruit extends Food { potionGlow = new ItemSprite.Glowing( 0x8E2975 ); info += "It looks delicious and clean, ready to be eaten!"; + } else if (potionAttrib instanceof PotionOfExperience) { + + name = "Starfruit"; + potionGlow = new ItemSprite.Glowing( 0xFFFFFF ); + info += "It looks delicious and glorious, ready to be eaten!"; + } return this;