mirror of
https://github.com/evennia/evennia.git
synced 2026-03-17 05:16:31 +01:00
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
|
||||
# this is treated as a command input
|
||||
# handle the 'idle' command
|
||||
if text.strip() == _IDLE_COMMAND:
|
||||
if text.strip() in _IDLE_COMMAND:
|
||||
session.update_session_counters(idle=True)
|
||||
return
|
||||
if session.player:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue