fixes WEAP roof when selling.

This commit is contained in:
Bob
2010-01-18 17:24:05 +13:00
parent 18e46bb886
commit b54aedc287
5 changed files with 33 additions and 9 deletions

View File

@@ -46,6 +46,7 @@ namespace OpenRa.Graphics
public void PlayThen( string sequenceName, Action after )
{
after = after ?? ( () => { } );
backwards = false;
tickAlways = false;
CurrentSequence = SequenceProvider.GetSequence( name, sequenceName );
@@ -112,5 +113,10 @@ namespace OpenRa.Graphics
ReplaceAnim(CurrentSequence.Name);
}
}
public Sequence GetSequence( string sequenceName )
{
return SequenceProvider.GetSequence( name, sequenceName );
}
}
}