From cc673a5c7a0707338bee09184d362d6d90936fb7 Mon Sep 17 00:00:00 2001 From: Howard Abrams Date: Mon, 16 Jun 2025 20:53:11 -0700 Subject: [PATCH] Work around the aliases bug Sigh. --- commands/everyone.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/commands/everyone.py b/commands/everyone.py index ae598f0..4a79ad2 100755 --- a/commands/everyone.py +++ b/commands/everyone.py @@ -278,6 +278,9 @@ class CmdRead(Command): def find_readable(self, searcher, readable_str): """Search the room for a readable item.""" + if readable_str == "chalkboard": + readable_str = "shrub" + targets = searcher.search(readable_str, quiet=True) if not targets: searcher.msg(f"You don't see {readable_str}.")