From 2c774779874395d00d583603d86eff6c9b82f095 Mon Sep 17 00:00:00 2001 From: MEEPofFaith <54301439+MEEPofFaith@users.noreply.github.com> Date: Wed, 10 May 2023 22:06:49 -0700 Subject: [PATCH] PartMove progress is ignored for growth (#8580) --- core/src/mindustry/entities/part/RegionPart.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/mindustry/entities/part/RegionPart.java b/core/src/mindustry/entities/part/RegionPart.java index d920f7eff8..d632587db0 100644 --- a/core/src/mindustry/entities/part/RegionPart.java +++ b/core/src/mindustry/entities/part/RegionPart.java @@ -78,8 +78,8 @@ public class RegionPart extends DrawPart{ mx += move.x * p; my += move.y * p; mr += move.rot * p; - gx += move.gx; - gy += move.gy; + gx += move.gx * p; + gy += move.gy * p; } }