Skip to content

Commit 9829f4f

Browse files
committed
bugfix for army graph
1 parent ef22b9b commit 9829f4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sc2reader/resources.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -883,7 +883,7 @@ def load_player_stats(self):
883883
xy = [(o[2], o[0]) for o in items]
884884
self.player_stats[index]['Income Graph'] = Graph([], [], xy_list=xy)
885885

886-
for index, items in enumerate(self.parts[4][0][1][1]):
886+
for index, items in enumerate(self.parts[4][0][2][1]):
887887
xy = [(o[2], o[0]) for o in items]
888888
self.player_stats[index]['Army Graph'] = Graph([], [], xy_list=xy)
889889

0 commit comments

Comments
 (0)