v1.3.0: fixed rare crashes in blast wave knockback

This commit is contained in:
Evan Debenham
2022-06-24 11:56:20 -04:00
parent 9ac770a140
commit cf9e874f5c

View File

@@ -117,7 +117,7 @@ public class WandOfBlastWave extends DamageWand {
boolean collided = dist == trajectory.dist;
if (dist == 0
if (dist <= 0
|| ch.rooted
|| ch.properties().contains(Char.Property.IMMOVABLE)) return;