don't care about the args themselves

This commit is contained in:
Glenn Maynard
2006-10-12 09:08:13 +00:00
parent 6f426c169a
commit 9ae99e24d9
+2 -2
View File
@@ -77,9 +77,9 @@ function Actor:player(p)
self:hide_if( not GAMESTATE:IsHumanPlayer(p) )
end
function ActorFrame:propagatecommand( cmd )
function ActorFrame:propagatecommand(...)
self:propagate(1);
self:playcommand(cmd);
self:playcommand(...);
self:propagate(0);
end