Skip to content

Commit 3f326be

Browse files
committed
Fixed issue #30
1 parent 014c177 commit 3f326be

File tree

1 file changed

+2
-2
lines changed
  • addons/source-python/plugins/es_emulator/eventscripts/esc/cmds

1 file changed

+2
-2
lines changed

addons/source-python/plugins/es_emulator/eventscripts/esc/cmds/run.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
def commandv(argv):
1010
stack.insertrawline(sv(argv[0]))
1111

12-
@Command(argsfrom=2, syntax='<seconds> <commandstring>', types=FLOAT, desc='Will run <commandstring>, after <seconds> seconds.')
12+
@Command(argsfrom=3, syntax='<seconds> <commandstring>', types=FLOAT, desc='Will run <commandstring>, after <seconds> seconds.')
1313
def delayed(argv, args):
1414
gamethread.delayed(argv[0], stack.queueline, (argv[1], argv[2:], args, esc.stack.currentblock, True))
1515

16-
@Command(syntax='<commandstring>', desc='Adds a command to the end of the command queue.')
16+
@Command(argsfrom=2, syntax='<commandstring>', desc='Adds a command to the end of the command queue.')
1717
def soon(argv, args):
1818
queue(stack.queueline, (argv[0], argv[1:], args, esc.stack.currentblock, True))
1919

0 commit comments

Comments
 (0)