From 6fa4192dcf779399b14bf1ccd43a0fba600d2a03 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Wed, 23 Dec 2015 04:39:47 -0500 Subject: [PATCH] v0.3.3a: throw is now the default action for ceremonial candles --- .../shatteredpixeldungeon/items/quest/CeremonialCandle.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/quest/CeremonialCandle.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/quest/CeremonialCandle.java index cd19ef48e..7f64edba3 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/quest/CeremonialCandle.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/quest/CeremonialCandle.java @@ -43,6 +43,8 @@ public class CeremonialCandle extends Item { name = "ceremonial candle"; image = ItemSpriteSheet.CANDLE; + defaultAction = AC_THROW; + unique = true; stackable = true; }