diff --git a/game/gamesrc/commands/default/privileged.py b/game/gamesrc/commands/default/privileged.py index 0b6e0fda86..37c19ab2e4 100644 --- a/game/gamesrc/commands/default/privileged.py +++ b/game/gamesrc/commands/default/privileged.py @@ -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):