mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
Fix typo in objects command. Resolve #1892.
This commit is contained in:
parent
01a24b8343
commit
f83532bf30
1 changed files with 1 additions and 1 deletions
|
|
@ -528,7 +528,7 @@ class CmdObjects(COMMAND_DEFAULT_CLASS):
|
|||
totaltable.align = 'l'
|
||||
totaltable.add_row("Characters", "(BASE_CHARACTER_TYPECLASS + children)",
|
||||
nchars, "%.2f" % ((float(nchars) / nobjs) * 100))
|
||||
totaltable.add_row("Rooms", "(BASE_ROOM_TYPECKLASS + children)",
|
||||
totaltable.add_row("Rooms", "(BASE_ROOM_TYPECLASS + children)",
|
||||
nrooms, "%.2f" % ((float(nrooms) / nobjs) * 100))
|
||||
totaltable.add_row("Exits", "(BASE_EXIT_TYPECLASS + children)",
|
||||
nexits, "%.2f" % ((float(nexits) / nobjs) * 100))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue