Suppress low runes (#14)

* suppress low runes from discord log

* suppress low runes from discord log
This commit is contained in:
Mitchell Gleed
2021-11-11 17:53:37 -05:00
committed by GitHub
parent fa9f7b2f3e
commit af807bb8e2

View File

@@ -55,13 +55,20 @@ class PickIt:
time.sleep(0.1)
mouse.click(button="left")
time.sleep(0.5)
if found_items:
try:
runeLvl = int(closest_item.name.split('_')[1])
except:
runeLvl=0
if found_items and ("rune_" in closest_item.name or "tt_" in closest_item.name):
if found_items and ((runeLvl >= 23) or ("tt_" in closest_item.name)):
if self._config.general["send_drops_to_discord"]:
send_discord_thread = threading.Thread(target=send_discord, args=(closest_item.name,))
send_discord_thread.daemon = True
send_discord_thread.start()
if self._config.general["custom_discord_hook"] != "":
send_discord_thread = threading.Thread(target=send_discord, args=(closest_item.name, self._config.general["custom_discord_hook"]))
send_discord_thread.daemon = True