Revert "Fallback handled. Yes, I tested this."

This reverts commit 986d510a88.
This commit is contained in:
Jason Felds
2013-07-18 17:43:19 -04:00
parent 881f175e6c
commit 6120a8a5e4
29 changed files with 793 additions and 1314 deletions
+6 -6
View File
@@ -1,6 +1,6 @@
local waitTime = ...
-- default to 1 second if parameter is missing
if not waitTime then waitTime = 1 end
return Def.Actor{ OnCommand=function(self) self:sleep(waitTime); end; };
local waitTime = ...
-- default to 1 second if parameter is missing
if not waitTime then waitTime = 1 end
return Def.Actor{ OnCommand=cmd(sleep,waitTime); };