mirror of
https://github.com/evennia/evennia.git
synced 2026-04-06 07:57:16 +02:00
Fixed an arg_regex in the examine command - it was disabling switches
This commit is contained in:
parent
d14b014611
commit
6e46158946
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue