Fix inconsistency in parameter name now that !hint only hints items, not locations.

This commit is contained in:
CaitSith2 2022-01-23 22:09:06 -08:00
parent 64ce90d5ca
commit 6b1c555d38
1 changed files with 2 additions and 2 deletions

View File

@ -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: