diff --git a/OpenRA.Mods.Common/Graphics/DefaultSpriteSequence.cs b/OpenRA.Mods.Common/Graphics/DefaultSpriteSequence.cs index 3e5422b0b1..4073ef3a6d 100644 --- a/OpenRA.Mods.Common/Graphics/DefaultSpriteSequence.cs +++ b/OpenRA.Mods.Common/Graphics/DefaultSpriteSequence.cs @@ -366,7 +366,7 @@ namespace OpenRA.Mods.Common.Graphics var j = Frames != null ? Frames[i] : start + i; if (sprites[j] == null) throw new InvalidOperationException("Attempted to query unloaded sprite from {0}.{1}".F(Name, sequence) + - " start={2} frame={3} facing={4}".F(start, frame, facing)); + " start={0} frame={1} facing={2}".F(start, frame, facing)); return sprites[j]; }