mirror of
https://github.com/evennia/evennia.git
synced 2026-03-31 13:07:16 +02:00
Made addcom aliases case-insensitive. Resolves #428. Also fixed a bug with channel aliases that made them not work correctly with the new Attribute changes.
This commit is contained in:
parent
5e942749e9
commit
9770786486
4 changed files with 10 additions and 11 deletions
|
|
@ -451,7 +451,7 @@ class ObjectDB(TypedObject):
|
|||
# do text encoding conversion
|
||||
raw_string = to_unicode(raw_string)
|
||||
raw_string = self.nicks.nickreplace(raw_string,
|
||||
categories=("inputline", "channels"), include_player=True)
|
||||
categories=("inputline", "channel"), include_player=True)
|
||||
return cmdhandler.cmdhandler(_GA(self, "typeclass"), raw_string, callertype="object", sessid=sessid)
|
||||
|
||||
def msg(self, text=None, from_obj=None, sessid=0, **kwargs):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue