mirror of
https://github.com/evennia/evennia.git
synced 2026-03-25 09:16:32 +01:00
Add multi-delimiter split to CmdGive
This commit is contained in:
parent
4ad5f01193
commit
64f57da1e4
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