PartMove progress is ignored for growth (#8580)

This commit is contained in:
MEEPofFaith
2023-05-10 22:06:49 -07:00
committed by GitHub
parent 397fd087f2
commit 2c77477987

View File

@@ -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;
}
}