Supported sleep on in direction

This commit is contained in:
Kkevsterrr 2019-12-12 23:17:18 -05:00
parent c9cc435231
commit 5bf29bee95
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ from actions.action import Action
class SleepAction(Action):
def __init__(self, time=1, environment_id=None):
Action.__init__(self, "sleep", "out")
Action.__init__(self, "sleep", "both")
self.terminal = False
self.branching = False
self.time = time