Skip to content

Commit

Permalink
Add support for arurf
Browse files Browse the repository at this point in the history
  • Loading branch information
AlberLC committed Feb 12, 2022
1 parent 32ad1fe commit e679c25
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flanarunas/flana_runas.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,9 @@ async def run(self):
self.qt_app.check_box_auto.isChecked()
and
(
('/lol-champ-select/v1/grid-champions' in uri and data['selectionStatus']['selectedByMe'] and (not self.current_champion or data['id'] != self.current_champion.id))
'/lol-champ-select/v1/grid-champions' in uri and data['selectionStatus']['selectedByMe'] and (not self.current_champion or data['id'] != self.current_champion.id)
or
(uri == '/lol-champ-select/v1/current-champion' and self.current_champion is None and event_type != 'Delete')
uri == '/lol-champ-select/v1/current-champion' and event_type != 'Delete' and (not self.current_champion or data != self.current_champion.id)
)
): # set rune pages by champion selected
try:
Expand Down

0 comments on commit e679c25

Please sign in to comment.