diff --git a/core/src/mindustry/world/blocks/production/Fracker.java b/core/src/mindustry/world/blocks/production/Fracker.java index fc07b9750a..81c314b128 100644 --- a/core/src/mindustry/world/blocks/production/Fracker.java +++ b/core/src/mindustry/world/blocks/production/Fracker.java @@ -53,7 +53,7 @@ public class Fracker extends SolidPump{ Drawf.liquid(liquidRegion, x, y, liquids.get(result) / liquidCapacity, result.color); - Draw.rect(rotatorRegion, x, y, pumpTime); + Drawf.spinSprite(rotatorRegion, x, y, pumpTime); Draw.rect(topRegion, x, y); } diff --git a/core/src/mindustry/world/blocks/production/SolidPump.java b/core/src/mindustry/world/blocks/production/SolidPump.java index e13090ec4e..ac5e778c47 100644 --- a/core/src/mindustry/world/blocks/production/SolidPump.java +++ b/core/src/mindustry/world/blocks/production/SolidPump.java @@ -89,7 +89,7 @@ public class SolidPump extends Pump{ public void draw(){ Draw.rect(region, x, y); Drawf.liquid(liquidRegion, x, y, liquids.total() / liquidCapacity, liquids.current().color); - Draw.rect(rotatorRegion, x, y, pumpTime * rotateSpeed); + Drawf.spinSprite(rotatorRegion, x, y, pumpTime * rotateSpeed); Draw.rect(topRegion, x, y); } diff --git a/gradle.properties b/gradle.properties index e9750a191e..7d2ad854bf 100644 --- a/gradle.properties +++ b/gradle.properties @@ -10,4 +10,4 @@ kapt.include.compile.classpath=false kotlin.stdlib.default.dependency=false #needed for android compilation android.useAndroidX=true -archash=e52908cb23da2dead7ac049a1f395bacda64007c +archash=cc2e0588e1a87c732d0d155fe24932ae43d641bf