mirror of
https://github.com/evennia/evennia.git
synced 2026-04-02 22:17:17 +02:00
Add multi-delimiter split to CmdGive
This commit is contained in:
parent
87d32abedd
commit
4a0f13804e
1 changed files with 1 additions and 1 deletions
|
|
@ -448,7 +448,7 @@ class CmdGive(COMMAND_DEFAULT_CLASS):
|
|||
placing it in their inventory.
|
||||
"""
|
||||
key = "give"
|
||||
rhs_split = " to "
|
||||
rhs_split = ("=", " to ") # Prefer = delimiter, but allow " to " usage.
|
||||
locks = "cmd:all()"
|
||||
arg_regex = r"\s|$"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue