diff --git a/OpenRA.Mods.Cnc/RenderBuildingRefinery.cs b/OpenRA.Mods.Cnc/RenderBuildingRefinery.cs index e599b9586a..fe21c3322b 100755 --- a/OpenRA.Mods.Cnc/RenderBuildingRefinery.cs +++ b/OpenRA.Mods.Cnc/RenderBuildingRefinery.cs @@ -40,7 +40,7 @@ namespace OpenRA.Mods.Cnc ? (59 * playerResources.Ore) / (10 * playerResources.OreCapacity) : 0); - anims.Add("lights", new AnimationWithOffset(lights, () => info.Offset, () => !buildComplete, 24)); + anims.Add("lights", new AnimationWithOffset(lights, () => info.Offset, () => !buildComplete, 1024)); } public void BuildingComplete( Actor self ) diff --git a/OpenRA.Mods.Cnc/RenderGunboat.cs b/OpenRA.Mods.Cnc/RenderGunboat.cs index 17c9cdf078..0b9c047c82 100644 --- a/OpenRA.Mods.Cnc/RenderGunboat.cs +++ b/OpenRA.Mods.Cnc/RenderGunboat.cs @@ -39,7 +39,7 @@ namespace OpenRA.Mods.RA.Render var rightOffset = new WVec(-43, 86, 0); anims.Add("wake", new AnimationWithOffset(wake, () => anims["wake"].Animation.CurrentSequence.Name == "left-wake" ? leftOffset : rightOffset, - () => false, -2)); + () => false, -87)); } public override void Tick(Actor self) diff --git a/OpenRA.Mods.Cnc/WithFire.cs b/OpenRA.Mods.Cnc/WithFire.cs index faf9d05ecb..d273cd23e1 100644 --- a/OpenRA.Mods.Cnc/WithFire.cs +++ b/OpenRA.Mods.Cnc/WithFire.cs @@ -28,7 +28,7 @@ namespace OpenRA.Mods.Cnc var roof = new Animation(rs.GetImage(self)); roof.PlayThen("fire-start", () => roof.PlayRepeating("fire-loop")); - rs.anims.Add("fire", new AnimationWithOffset(roof, () => info.Offset, null, 24)); + rs.anims.Add("fire", new AnimationWithOffset(roof, () => info.Offset, null, 1024)); } } } diff --git a/OpenRA.Mods.Cnc/WithRoof.cs b/OpenRA.Mods.Cnc/WithRoof.cs index 21badb8e1d..0e22ab2b62 100644 --- a/OpenRA.Mods.Cnc/WithRoof.cs +++ b/OpenRA.Mods.Cnc/WithRoof.cs @@ -25,7 +25,7 @@ namespace OpenRA.Mods.Cnc var rs = self.Trait(); var roof = new Animation(rs.GetImage(self), () => self.Trait().Facing); roof.Play("roof"); - rs.anims.Add("roof", new AnimationWithOffset(roof, null, null, 24)); + rs.anims.Add("roof", new AnimationWithOffset(roof, null, null, 1024)); } } }