diff --git a/core/src/mindustry/type/UnitType.java b/core/src/mindustry/type/UnitType.java index 2e3dc7f2cc..646c4f12d5 100644 --- a/core/src/mindustry/type/UnitType.java +++ b/core/src/mindustry/type/UnitType.java @@ -1536,9 +1536,12 @@ public class UnitType extends UnlockableContent implements Senseable{ public void drawPayload(T unit){ if(unit.hasPayload()){ + float prev = Draw.z(); + Draw.z(prev - 0.02f); Payload pay = unit.payloads().first(); pay.set(unit.x, unit.y, unit.rotation); pay.draw(); + Draw.z(prev); } }