mirror of
https://github.com/evennia/evennia.git
synced 2026-03-25 09:16:32 +01:00
Fixed a bug in object's __eq__ that returned erroneous fails.
This commit is contained in:
parent
2a2b3b5ce6
commit
0d1f9d5bdc
2 changed files with 5 additions and 5 deletions
|
|
@ -197,7 +197,7 @@ def cmdhandler(caller, raw_string, testing=False):
|
|||
if len(matches) > 1:
|
||||
# We have a multiple-match
|
||||
syscmd = yield cmdset.get(CMD_MULTIMATCH)
|
||||
sysarg = _("There where multiple matches.")
|
||||
sysarg = _("There were multiple matches.")
|
||||
if syscmd:
|
||||
syscmd.matches = matches
|
||||
else:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue