diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/traps/GeyserTrap.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/traps/GeyserTrap.java index e2382d3d8..f9ab303a4 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/traps/GeyserTrap.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/traps/GeyserTrap.java @@ -68,7 +68,7 @@ public class GeyserTrap extends Trap { } if (targetpos != -1){ //trace a ballistica in the direction of our target - Ballistica trajectory = new Ballistica(pos, targetpos, Ballistica.STOP_SOLID); + Ballistica trajectory = new Ballistica(pos, targetpos, Ballistica.PROJECTILE); //knock them back along that ballistica WandOfBlastWave.throwChar(ch, trajectory, 2, true); }