Fix typo in objects command. Resolve #1892.

This commit is contained in:
Griatch 2019-08-26 20:12:18 +02:00
parent 01a24b8343
commit f83532bf30

View file

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