From 3fc09571971ed1587d4b230ed67dda6d0f326bf0 Mon Sep 17 00:00:00 2001 From: MEEPofFaith <54301439+MEEPofFaith@users.noreply.github.com> Date: Wed, 10 Aug 2022 11:52:20 -0700 Subject: [PATCH] Shielded wall shield size (#7343) --- core/src/mindustry/world/blocks/defense/ShieldWall.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/world/blocks/defense/ShieldWall.java b/core/src/mindustry/world/blocks/defense/ShieldWall.java index b7878e6af4..8f7a1135a1 100644 --- a/core/src/mindustry/world/blocks/defense/ShieldWall.java +++ b/core/src/mindustry/world/blocks/defense/ShieldWall.java @@ -43,7 +43,7 @@ public class ShieldWall extends Wall{ Draw.rect(block.region, x, y); if(shieldRadius > 0){ - float radius = shieldRadius * tilesize; + float radius = shieldRadius * tilesize * size / 2f; Draw.z(Layer.shields);