diff --git a/Themes/_fallback/BGAnimations/_wait.lua b/Themes/_fallback/BGAnimations/_wait.lua index 02384f8304..70d72b18be 100644 --- a/Themes/_fallback/BGAnimations/_wait.lua +++ b/Themes/_fallback/BGAnimations/_wait.lua @@ -1,5 +1,3 @@ -local time = ... -assert(time) -return Def.ActorFrame{ - Def.Actor{ OnCommand=cmd(sleep,time); }; -}; \ No newline at end of file +local waitTime = ... +assert(waitTime,"[_wait] requires a wait time") +return Def.Actor{ OnCommand=cmd(sleep,waitTime); }; \ No newline at end of file