mirror of
https://github.com/evennia/evennia.git
synced 2026-04-04 15:07:16 +02:00
Fixed a simple list-bug in @objects command. This resolves issue111.
This commit is contained in:
parent
164eb5b89b
commit
7904916dba
1 changed files with 1 additions and 1 deletions
|
|
@ -305,7 +305,7 @@ class CmdListObjects(MuxCommand):
|
|||
string += srow
|
||||
|
||||
string += "\n\n{wLast %s Objects created:{n" % nlim
|
||||
objs = list(ObjectDB.objects.all())[:nlim]
|
||||
objs = list(ObjectDB.objects.all())[-nlim:]
|
||||
|
||||
table = [["Created"], ["dbref"], ["name"], ["typeclass"]]
|
||||
for i, obj in enumerate(objs):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue