From 4c3926cdf1d8519fe65eb9eb34f20175cc319710 Mon Sep 17 00:00:00 2001 From: Griatch Date: Sun, 26 Jun 2016 23:46:05 +0200 Subject: [PATCH] Fixed a regression concerning the idle command. --- evennia/server/inputfuncs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evennia/server/inputfuncs.py b/evennia/server/inputfuncs.py index 0e9d2ad576..086890562c 100644 --- a/evennia/server/inputfuncs.py +++ b/evennia/server/inputfuncs.py @@ -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: