Work around the aliases bug
Sigh.
This commit is contained in:
parent
426e339ed8
commit
cc673a5c7a
1 changed files with 3 additions and 0 deletions
|
|
@ -278,6 +278,9 @@ class CmdRead(Command):
|
||||||
|
|
||||||
def find_readable(self, searcher, readable_str):
|
def find_readable(self, searcher, readable_str):
|
||||||
"""Search the room for a readable item."""
|
"""Search the room for a readable item."""
|
||||||
|
if readable_str == "chalkboard":
|
||||||
|
readable_str = "shrub"
|
||||||
|
|
||||||
targets = searcher.search(readable_str, quiet=True)
|
targets = searcher.search(readable_str, quiet=True)
|
||||||
if not targets:
|
if not targets:
|
||||||
searcher.msg(f"You don't see {readable_str}.")
|
searcher.msg(f"You don't see {readable_str}.")
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue