diff --git a/OpenRA.Mods.Common/Activities/Transform.cs b/OpenRA.Mods.Common/Activities/Transform.cs index f5eaf34e02..324bc1dfaa 100644 --- a/OpenRA.Mods.Common/Activities/Transform.cs +++ b/OpenRA.Mods.Common/Activities/Transform.cs @@ -67,7 +67,7 @@ namespace OpenRA.Mods.Common.Activities nt.BeforeTransform(self); var makeAnimation = self.TraitOrDefault(); - if (makeAnimation != null) + if (!SkipMakeAnims && makeAnimation != null) { // Once the make animation starts the activity must not be stopped anymore. IsInterruptible = false;