Fixed a regression concerning the idle command.
This commit is contained in:
parent
0ad84346d1
commit
4c3926cdf1
1 changed files with 1 additions and 1 deletions
|
|
@ -63,7 +63,7 @@ def text(session, *args, **kwargs):
|
||||||
return
|
return
|
||||||
# this is treated as a command input
|
# this is treated as a command input
|
||||||
# handle the 'idle' command
|
# handle the 'idle' command
|
||||||
if text.strip() == _IDLE_COMMAND:
|
if text.strip() in _IDLE_COMMAND:
|
||||||
session.update_session_counters(idle=True)
|
session.update_session_counters(idle=True)
|
||||||
return
|
return
|
||||||
if session.player:
|
if session.player:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue