From dc444bd2be6d4d2b2b111849c45de5ba79cf6cab Mon Sep 17 00:00:00 2001 From: Griatch Date: Sun, 8 Sep 2019 20:19:25 +0200 Subject: [PATCH] Fix typo in lock defintion --- evennia/objects/objects.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evennia/objects/objects.py b/evennia/objects/objects.py index bb6f6b5c64..ad3a0be68e 100644 --- a/evennia/objects/objects.py +++ b/evennia/objects/objects.py @@ -1138,7 +1138,7 @@ class DefaultObject(with_metaclass(TypeclassBase, ObjectDB)): "edit:perm(Admin)", # edit properties/attributes "delete:perm(Admin)", # delete object "get:all()", # pick up object - "drop:holds()" # drop only that which you hold + "drop:holds()", # drop only that which you hold "call:true()", # allow to call commands on this object "tell:perm(Admin)", # allow emits to this object "puppet:pperm(Developer)"])) # lock down puppeting only to staff by default