From 9c677362e76c6cf65106759e43b8cd73265a6557 Mon Sep 17 00:00:00 2001 From: Griatch Date: Wed, 3 Jun 2015 23:10:41 +0200 Subject: [PATCH] Fixed a typo for the command. Resolves #755. --- evennia/commands/default/system.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evennia/commands/default/system.py b/evennia/commands/default/system.py index fe1ec1e0ea..c22b38bd76 100644 --- a/evennia/commands/default/system.py +++ b/evennia/commands/default/system.py @@ -429,7 +429,7 @@ class CmdPlayers(MuxCommand): "List the players" caller = self.caller - if self.args and self.args.is_digit(): + if self.args and self.args.isdigit(): nlim = int(self.args) else: nlim = 10