This commit is contained in:
Anuken
2025-02-06 23:58:32 -05:00
parent 423d635efe
commit c100d8c13c

View File

@@ -118,7 +118,7 @@ public class UnitPayload implements Payload{
}
//cannot dump when there's a lot of overlap going on
if(!unit.type.flying && Units.count(unit.x, unit.y, unit.physicSize(), o -> o.isGrounded() && (o.type.allowLegStep == unit.type.allowLegStep)) > 0){
if(!unit.type.flying && Units.count(unit.x, unit.y, unit.physicSize() * 1.05f, o -> o.isGrounded() && (o.type.allowLegStep == unit.type.allowLegStep)) > 0){
return false;
}