Fixed an arg_regex in the examine command - it was disabling switches

This commit is contained in:
Griatch 2012-12-12 23:21:22 +01:00
parent d14b014611
commit 6e46158946

View file

@ -1556,7 +1556,7 @@ class CmdExamine(ObjManipCommand):
aliases = ["@ex","ex", "exam", "examine"]
locks = "cmd:perm(examine) or perm(Builders)"
help_category = "Building"
arg_regex = r"\s.*?|$"
arg_regex = r"(/\w+?(\s|$))|\s|$"
player_mode = False