Skip to content

Commit

Permalink
Updated to add build field.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kraust committed Mar 16, 2024
1 parent 4528ec6 commit da11d0d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions OSCRUI/leagueconnector.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"Date",
"Max One Hit",
"Debuff",
"Build",
)


Expand Down Expand Up @@ -102,6 +103,7 @@ def slot_ladder(self, selected_map):
format_datetime_str(entry.var_date),
row["max_one_hit"],
row["debuff"],
row.get("build", "Unknown"),
)
)

Expand Down Expand Up @@ -151,6 +153,7 @@ def extend_ladder(self):
format_datetime_str(entry.var_date),
row["max_one_hit"],
row["debuff"],
row.get("build", "Unknown"),
)
)
self.widgets.ladder_table.model().sourceModel().extend_data(
Expand Down

0 comments on commit da11d0d

Please sign in to comment.