From 6b1c555d38e2a6350cfc82eb056392f23c0bd3ff Mon Sep 17 00:00:00 2001 From: CaitSith2 Date: Sun, 23 Jan 2022 22:09:06 -0800 Subject: [PATCH] Fix inconsistency in parameter name now that !hint only hints items, not locations. --- MultiServer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MultiServer.py b/MultiServer.py index 8bb41ef3..47ebecb3 100644 --- a/MultiServer.py +++ b/MultiServer.py @@ -1243,12 +1243,12 @@ class ClientMessageProcessor(CommonCommandProcessor): return False @mark_raw - def _cmd_hint(self, item_or_location: str = "") -> bool: + def _cmd_hint(self, item: str = "") -> bool: """Use !hint {item_name}, for example !hint Lamp to get a spoiler peek for that item. If hint costs are on, this will only give you one new result, you can rerun the command to get more in that case.""" - return self.get_hints(item_or_location) + return self.get_hints(item) @mark_raw def _cmd_hint_location(self, location: str = "") -> bool: