From f9d51ab02f2ecbf094ce4fa8bb08245d8911fe4b Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Fri, 4 Nov 2016 18:09:59 -0400 Subject: [PATCH] v0.4.3b: removed the halloween treat extension --- .../shatteredpixeldungeon/items/food/Pasty.java | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) 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 9e97a1151..537a88493 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 @@ -59,10 +59,7 @@ public class Pasty extends Food { holiday = Holiday.HWEEN; break; case Calendar.NOVEMBER: - if (calendar.get(Calendar.DAY_OF_MONTH) == 1 || - //halloween treat is releasing late in 2016, give it a bit more time - (calendar.get(Calendar.YEAR) == 2016 - && calendar.get(Calendar.WEEK_OF_MONTH) == 1)) + if (calendar.get(Calendar.DAY_OF_MONTH) == 1) holiday = Holiday.HWEEN; break; case Calendar.DECEMBER: