From 3ff942a895c117df00def06ad2a88b9c0b28a1bd Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Wed, 30 Aug 2023 17:17:44 -0400 Subject: [PATCH] v2.2.0: reverted unintentional change of floor 1 traps --- .../shatteredpixeldungeon/levels/SewerLevel.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/SewerLevel.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/SewerLevel.java index b9dd88ffc..cffbbb9c4 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/SewerLevel.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/SewerLevel.java @@ -39,7 +39,6 @@ import com.shatteredpixel.shatteredpixeldungeon.levels.traps.ConfusionTrap; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.FlockTrap; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.GatewayTrap; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.OozeTrap; -import com.shatteredpixel.shatteredpixeldungeon.levels.traps.PitfallTrap; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.ShockingTrap; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.SummoningTrap; import com.shatteredpixel.shatteredpixeldungeon.levels.traps.TeleportationTrap; @@ -109,7 +108,7 @@ public class SewerLevel extends RegularLevel { @Override protected Class[] trapClasses() { return Dungeon.depth == 1 ? - new Class[]{ PitfallTrap.class } : + new Class[]{ WornDartTrap.class } : new Class[]{ ChillingTrap.class, ShockingTrap.class, ToxicTrap.class, WornDartTrap.class, AlarmTrap.class, OozeTrap.class,