From f3b70fc3ad10679eaa7da6a57082f825b9599aec Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Mon, 25 May 2015 20:54:09 -0400 Subject: [PATCH] v0.3.0: added proper glow color for starfruit --- .../shatteredpixeldungeon/items/food/Blandfruit.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/food/Blandfruit.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/food/Blandfruit.java index ae570d03b..295baeb08 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/food/Blandfruit.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/food/Blandfruit.java @@ -260,7 +260,7 @@ public class Blandfruit extends Food { } else if (potionAttrib instanceof PotionOfExperience) { name = "Starfruit"; - potionGlow = new ItemSprite.Glowing( 0xFFFFFF ); + potionGlow = new ItemSprite.Glowing( 0xA79400 ); info += "It looks delicious and glorious, ready to be eaten!"; }