Let ActorCommand do the parsing for ModeChoice

This commit is contained in:
Chris Danford
2004-12-02 05:56:38 +00:00
parent 061fbb276a
commit e1da21f61c
13 changed files with 54 additions and 41 deletions
+1 -1
View File
@@ -619,7 +619,7 @@ void Actor::AddRotationR( float rot )
void Actor::Command( const ActorCommands &vCommands )
{
FOREACH_CONST( ActorCommand, vCommands, c )
FOREACH_CONST( ActorCommand, vCommands.v, c )
this->HandleCommand( *c );
}