From ec4c29b5924ddee620f5f3148dbccf9609c241e4 Mon Sep 17 00:00:00 2001 From: Griatch Date: Fri, 29 Jun 2012 07:34:34 +0200 Subject: [PATCH] Fixed a bug in @delplayer. --- src/commands/default/admin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/default/admin.py b/src/commands/default/admin.py index 0a4e0e5dd6..9731569978 100644 --- a/src/commands/default/admin.py +++ b/src/commands/default/admin.py @@ -302,7 +302,7 @@ class CmdDelPlayer(MuxCommand): # We use player_search since we want to be sure to find also players # that lack characters. - players = caller.search("*%s" % args, player=True) + players = caller.search("*%s" % args) if not players: try: players = PlayerDB.objects.filter(id=args)