From 70dbaf8bf438a075ad1e9c15033f3d23a417df03 Mon Sep 17 00:00:00 2001 From: Griatch Date: Sat, 3 Feb 2018 14:51:49 +0100 Subject: [PATCH] Update lock docstring. Closes #1563. --- evennia/commands/default/building.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/evennia/commands/default/building.py b/evennia/commands/default/building.py index 78aa7d7553..ebd8f66871 100644 --- a/evennia/commands/default/building.py +++ b/evennia/commands/default/building.py @@ -1807,13 +1807,13 @@ class CmdLock(ObjManipCommand): For example: 'get: id(25) or perm(Admin)' - The 'get' access_type is checked by the get command and will - an object locked with this string will only be possible to - pick up by Admins or by object with id=25. + The 'get' lock access_type is checked e.g. by the 'get' command. + An object locked with this example lock will only be possible to pick up + by Admins or by an object with id=25. You can add several access_types after one another by separating them by ';', i.e: - 'get:id(25);delete:perm(Builder)' + 'get:id(25); delete:perm(Builder)' """ key = "@lock" aliases = ["@locks"]