Allow multi-character keys for EvForm cells and tables. This was due to a too restrictive regex. Resolves #1014.

This commit is contained in:
Griatch 2016-08-20 11:41:53 +02:00
parent 1da9217a18
commit 49087b50d1
3 changed files with 4 additions and 5 deletions

View file

@ -1145,7 +1145,6 @@ class ContribRPObject(DefaultObject):
if searchdata.lower() in ("me", "self",):
return [self] if quiet else self
if use_nicks:
# do nick-replacement on search
searchdata = self.nicks.nickreplace(searchdata, categories=("object", "player"), include_player=True)