diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/Dungeon.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/Dungeon.java index 15b716e11..eab3ca631 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/Dungeon.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/Dungeon.java @@ -200,8 +200,7 @@ public class Dungeon { droppedItems = new SparseArray<>(); portedItems = new SparseArray<>(); - for (LimitedDrops a : LimitedDrops.values()) - a.count = 0; + LimitedDrops.reset(); chapters = new HashSet<>(); @@ -382,7 +381,7 @@ public class Dungeon { } Light light = hero.buff( Light.class ); - hero.viewDistance = light == null ? level.viewDistance : Math.max( Light.DISTANCE, level.viewDistance ); + hero.viewDistance = 2; hero.curAction = hero.lastAction = null;