Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix typos
  • Loading branch information
StoicLoofah committed May 14, 2018
commit 48d8aae84b04f6fd0f8c78114d54e53cf833cc6e
4 changes: 3 additions & 1 deletion sc2reader/data/attributes.json
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,9 @@
"T6": "Team 6",
"T7": "Team 7",
"T8": "Team 8",
"T9": "Team 9"
"T9": "Team 9",
"T10": "Team 10",
"T11": "Team 11"
}
],
"3000": [
Expand Down
4 changes: 2 additions & 2 deletions sc2reader/objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,11 +212,11 @@ def __init__(self, pid, slot_data, detail_data, attribute_data):

#: The mastery level of the co-op commander
#: >0 or None
self.comander_mastery_level = slot_data['commander_mastery_talents']
self.commander_mastery_level = slot_data['commander_mastery_talents']

#: The mastery talents picked for the co-op commander
#: list of longs of length 6, each between 0 and 30
self.comander_mastery_talents = slot_data['commander_mastery_talents']
self.commander_mastery_talents = slot_data['commander_mastery_talents']

#: A reference to a :class:`~sc2reader.utils.Color` object representing the player's color
self.color = utils.Color(**detail_data['color'])
Expand Down