diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/ItemSlot.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/ItemSlot.java index 95999cf91..961dae883 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/ItemSlot.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/ItemSlot.java @@ -228,7 +228,9 @@ public class ItemSlot extends Button { status.text( item.status() ); + //thrown weapons on their last use show quantity in orange, unless they are single-use if (item instanceof MissileWeapon + && ((MissileWeapon) item).durabilityLeft() <= 50f && ((MissileWeapon) item).durabilityLeft() <= ((MissileWeapon) item).durabilityPerUse()){ status.hardlight(WARNING); } else {