diff --git a/core/assets/maps/karst.msav b/core/assets/maps/karst.msav index 49661c4b98..14779aa1ae 100644 Binary files a/core/assets/maps/karst.msav and b/core/assets/maps/karst.msav differ diff --git a/core/src/mindustry/entities/comp/TankComp.java b/core/src/mindustry/entities/comp/TankComp.java index f80920c759..20e3831064 100644 --- a/core/src/mindustry/entities/comp/TankComp.java +++ b/core/src/mindustry/entities/comp/TankComp.java @@ -62,7 +62,7 @@ abstract class TankComp implements Posc, Flyingc, Hitboxc, Unitc, ElevationMovec } //TODO should this apply to the player team(s)? currently PvE due to balancing - if(type.crushDamage > 0 && walked && t != null && t.build != null && t.build.team != team + if(type.crushDamage > 0 && (walked || deltaLen() >= 0.01f) && t != null && t.build != null && t.build.team != team //damage radius is 1 tile smaller to prevent it from just touching walls as it passes && Math.max(Math.abs(dx), Math.abs(dy)) <= r - 1){