From 0a74ed12ba5d5115035d58ae3f4b1d8e41084f92 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Mon, 23 Sep 2024 12:55:15 -0400 Subject: [PATCH] v2.5.3: fixed corpse dust unintentionally becoming droppable --- .../shatteredpixeldungeon/items/quest/CorpseDust.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/quest/CorpseDust.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/quest/CorpseDust.java index 30f7b0c98..64b3c342a 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/quest/CorpseDust.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/quest/CorpseDust.java @@ -52,6 +52,10 @@ public class CorpseDust extends Item { unique = true; } + @Override + public ArrayList actions(Hero hero) { + return new ArrayList<>(); //yup, no dropping this one + } @Override public boolean isUpgradable() {