From 4125c5985f04e8621504bceb371dfe90e58faeee Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Tue, 12 Apr 2022 16:49:21 -0400 Subject: [PATCH] v1.2.3: removed debug code that caused cached rations to not cap --- .../shatteredpixeldungeon/levels/RegularLevel.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/RegularLevel.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/RegularLevel.java index 35f70e952..85523caac 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/RegularLevel.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/RegularLevel.java @@ -440,7 +440,7 @@ public abstract class RegularLevel extends Level { losBlocking[cell] = false; } drop(new SmallRation(), cell).type = Heap.Type.CHEST; - //dropped.countUp(1); + dropped.countUp(1); } } }