Fixed bug in @stats (issue93).

This commit is contained in:
Griatch 2010-08-29 23:39:33 +00:00
parent 9148705c89
commit 2cee32a75b

View file

@ -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()