Skip to content

Commit 6a63f51

Browse files
authored
Fix pre-pots (#35)
* Fix pre-pots
1 parent 52d55a3 commit 6a63f51

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

slao_bot/cogs/potions.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ def process_prepotions(self, raiders: Dict[int, str], entries: Dict) -> None:
5151
if entry['type'] != 'combatantinfo':
5252
continue
5353
for aura in entry['auras']:
54-
if aura['ability'] == 53762 or aura['ability'] == 53908 or aura['ability'] == 53909:
54+
if (aura['ability'] == 79475 or aura['ability'] == 79476
55+
or aura['ability'] == 79633 or aura['ability'] == 79634):
5556
self.combat_prepotions[raiders[entry['sourceID']]] = self.combat_prepotions.get(
5657
raiders[entry['sourceID']], 0) + 1
5758

0 commit comments

Comments
 (0)