From 48b9bbc31703e9e6f739908b3b34336bc58d96d0 Mon Sep 17 00:00:00 2001 From: Anuken Date: Tue, 2 Nov 2021 00:24:28 -0400 Subject: [PATCH] Less thruster rotation --- core/src/mindustry/world/blocks/defense/Thruster.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/src/mindustry/world/blocks/defense/Thruster.java b/core/src/mindustry/world/blocks/defense/Thruster.java index 89c9a28c12..f015b02b38 100644 --- a/core/src/mindustry/world/blocks/defense/Thruster.java +++ b/core/src/mindustry/world/blocks/defense/Thruster.java @@ -29,8 +29,7 @@ public class Thruster extends Wall{ @Override public void draw(){ - super.draw(); - + Draw.rect(block.region, x, y); Draw.rect(topRegion, x, y, rotdeg()); } }