mirror of
https://github.com/evennia/evennia.git
synced 2026-03-22 15:56:30 +01:00
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
|
||||
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()
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue