Skip to content

Commit

Permalink
Bugfix: Messenger has no attribute "send"
Browse files Browse the repository at this point in the history
  • Loading branch information
aliig authored Feb 14, 2022
1 parent 01477d6 commit c7ff757
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/ui_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ def stash_all_items(self, num_loot_columns: int, item_finder: ItemFinder, gamble
msg = "All stash tabs and character are full of gold, turn of gold pickup"
Logger.info(msg)
if self._config.general["custom_message_hook"]:
self._messenger.send(msg=f"{self._config.general['name']}: {msg}")
self._messenger.send_message(msg=f"{self._config.general['name']}: {msg}")
else:
# move to next stash
wait(0.5, 0.6)
Expand Down

0 comments on commit c7ff757

Please sign in to comment.