mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00
Fix inconsistency in parameter name now that !hint only hints items, not locations.
This commit is contained in:
@@ -1243,12 +1243,12 @@ class ClientMessageProcessor(CommonCommandProcessor):
|
|||||||
return False
|
return False
|
||||||
|
|
||||||
@mark_raw
|
@mark_raw
|
||||||
def _cmd_hint(self, item_or_location: str = "") -> bool:
|
def _cmd_hint(self, item: str = "") -> bool:
|
||||||
"""Use !hint {item_name},
|
"""Use !hint {item_name},
|
||||||
for example !hint Lamp to get a spoiler peek for that item.
|
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,
|
If hint costs are on, this will only give you one new result,
|
||||||
you can rerun the command to get more in that case."""
|
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
|
@mark_raw
|
||||||
def _cmd_hint_location(self, location: str = "") -> bool:
|
def _cmd_hint_location(self, location: str = "") -> bool:
|
||||||
|
Reference in New Issue
Block a user