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;