Fixed bug in @stats (issue93).
This commit is contained in:
parent
9148705c89
commit
2cee32a75b
1 changed files with 1 additions and 1 deletions
|
|
@ -190,7 +190,7 @@ class CmdStats(MuxCommand):
|
||||||
# get all objects
|
# get all objects
|
||||||
stats_allobj = ObjectDB.objects.all().count()
|
stats_allobj = ObjectDB.objects.all().count()
|
||||||
# get all rooms
|
# get all rooms
|
||||||
stats_room = ObjectDB.objects.filter(obj_location=None).count()
|
stats_room = ObjectDB.objects.filter(db_location=None).count()
|
||||||
# get all players
|
# get all players
|
||||||
stats_users = User.objects.all().count()
|
stats_users = User.objects.all().count()
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue