mirror of
https://github.com/evennia/evennia.git
synced 2026-03-22 15:56:30 +01:00
Removed the examine: locktype from the @create locktype setting. Resolves #770.
This commit is contained in:
parent
82a80174f0
commit
640439dcf5
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue