mirror of
https://github.com/evennia/evennia.git
synced 2026-03-26 01:36:32 +01:00
Correct nick parsing
This commit is contained in:
parent
dec5dbbf3a
commit
0ecf99ab4b
1 changed files with 1 additions and 1 deletions
|
|
@ -124,8 +124,8 @@ class CmdNick(COMMAND_DEFAULT_CLASS):
|
|||
"""
|
||||
Support escaping of = with \=
|
||||
"""
|
||||
args = self.args
|
||||
super(CmdNick, self).parse()
|
||||
args = (self.lhs or "") + " = %s" % self.rhs if self.rhs else ""
|
||||
parts = re.split(r"(?<!\\)=", args, 1)
|
||||
self.rhs = None
|
||||
if len(parts) < 2:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue