Skip to content

Commit

Permalink
Fixed damage out table parsing.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kraust committed Dec 22, 2024
1 parent 1787151 commit 87e0102
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion combatlog/models/combatlog.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def update_metadata_file(self, file, force=False):
combat = parser.combats[0]
except IndexError:
raise APIException('Combat log is empty')
damage_out = self.tree_to_dict(combat.damage_out)
damage_out = self.tree_to_dict(combat.damage_out._root)

players = {}
for name, player in combat.players.items():
Expand Down

0 comments on commit 87e0102

Please sign in to comment.