From 640439dcf5a8ff3a90d8fc87661fd13a9bdb2d37 Mon Sep 17 00:00:00 2001 From: Griatch Date: Wed, 22 Jul 2015 14:38:12 +0200 Subject: [PATCH] Removed the examine: locktype from the @create locktype setting. Resolves #770. --- evennia/commands/default/building.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evennia/commands/default/building.py b/evennia/commands/default/building.py index d94a95405d..a61f8a7caf 100644 --- a/evennia/commands/default/building.py +++ b/evennia/commands/default/building.py @@ -490,7 +490,7 @@ class CmdCreate(ObjManipCommand): # create object (if not a valid typeclass, the default # object typeclass will automatically be used) - lockstring = "control:id(%s);examine:perm(Builders);delete:id(%s) or perm(Wizards)" % (caller.id, caller.id) + lockstring = "control:id(%s);delete:id(%s) or perm(Wizards)" % (caller.id, caller.id) obj = create.create_object(typeclass, name, caller, home=caller, aliases=aliases, locks=lockstring, report_to=caller)