From 9ae99e24d96a5b66b163806d52b5c0739320578f Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 12 Oct 2006 09:08:13 +0000 Subject: [PATCH] don't care about the args themselves --- stepmania/Themes/default/Scripts/Actor.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/Themes/default/Scripts/Actor.lua b/stepmania/Themes/default/Scripts/Actor.lua index 31cf6ffea1..fd541ffef1 100644 --- a/stepmania/Themes/default/Scripts/Actor.lua +++ b/stepmania/Themes/default/Scripts/Actor.lua @@ -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