From e06d9a9187b9748e0b31883a0beb8b8712cda19c Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Sun, 3 Dec 2023 16:51:45 -0500 Subject: [PATCH] v2.3.0: added a default case for pasty sprites --- .../shatteredpixel/shatteredpixeldungeon/items/food/Pasty.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/food/Pasty.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/food/Pasty.java index 092aea4bb..76935dd5f 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/food/Pasty.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/food/Pasty.java @@ -47,7 +47,7 @@ public class Pasty extends Food { public void reset() { super.reset(); switch(Holiday.getCurrentHoliday()){ - case NONE: + case NONE: default: image = ItemSpriteSheet.PASTY; break; case LUNAR_NEW_YEAR: