mirror of
https://github.com/evennia/evennia.git
synced 2026-04-02 05:57:16 +02:00
Add multi-delimiter split to CmdTeleport
This commit is contained in:
parent
4bcdeb4825
commit
4ad5f01193
1 changed files with 1 additions and 1 deletions
|
|
@ -2427,7 +2427,7 @@ class CmdTeleport(COMMAND_DEFAULT_CLASS):
|
|||
key = "@tel"
|
||||
aliases = "@teleport"
|
||||
switch_options = ("quiet", "intoexit", "tonone", "loc")
|
||||
rhs_split = " to "
|
||||
rhs_split = ("=", " to ") # Prefer = delimiter, but allow " to " usage.
|
||||
locks = "cmd:perm(teleport) or perm(Builder)"
|
||||
help_category = "Building"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue