1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00

altre cose

This commit is contained in:
Steffo 2019-03-01 18:00:12 +01:00
parent 14582b9edc
commit 27b49da1fa

View file

@ -137,10 +137,15 @@ def brawlhalla_rank_change(item, change: typing.Tuple[DirtyDelta, Dirty]):
rating=solo.value, rating=solo.value,
delta=solo.delta) delta=solo.delta)
if team.is_dirty(): if team.is_dirty():
partner = item.best_team_partner
if partner is None:
other = "???"
else:
other = partner.steam.royal.username
reply_msg(telegram_bot, main_chat_id, strings.STATSUPDATE.BRAWLHALLA.TEAM, reply_msg(telegram_bot, main_chat_id, strings.STATSUPDATE.BRAWLHALLA.TEAM,
username=item.steam.royal.username, username=item.steam.royal.username,
rating=team[1], rating=team[1],
teamname=team[0]) other=other)
except Exception: except Exception:
logger.warning(f"Couldn't notify on Telegram: {item}") logger.warning(f"Couldn't notify on Telegram: {item}")
sentry.captureException() sentry.captureException()