From 2cee32a75b24f9bcd21fa32deb42b4a27610bc44 Mon Sep 17 00:00:00 2001 From: Griatch Date: Sun, 29 Aug 2010 23:39:33 +0000 Subject: [PATCH] Fixed bug in @stats (issue93). --- game/gamesrc/commands/default/info.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game/gamesrc/commands/default/info.py b/game/gamesrc/commands/default/info.py index 7702fafd3c..d0095264d8 100644 --- a/game/gamesrc/commands/default/info.py +++ b/game/gamesrc/commands/default/info.py @@ -190,7 +190,7 @@ class CmdStats(MuxCommand): # get all objects stats_allobj = ObjectDB.objects.all().count() # get all rooms - stats_room = ObjectDB.objects.filter(obj_location=None).count() + stats_room = ObjectDB.objects.filter(db_location=None).count() # get all players stats_users = User.objects.all().count()