v2.5.3: fixed corpse dust unintentionally becoming droppable

This commit is contained in:
Evan Debenham
2024-09-23 12:55:15 -04:00
parent fdbcb877d7
commit 0a74ed12ba

View File

@@ -52,6 +52,10 @@ public class CorpseDust extends Item {
unique = true;
}
@Override
public ArrayList<String> actions(Hero hero) {
return new ArrayList<>(); //yup, no dropping this one
}
@Override
public boolean isUpgradable() {