Skip to content

Commit 48d8aae

Browse files
committed
fix typos
1 parent abf8da7 commit 48d8aae

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

sc2reader/data/attributes.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,9 @@
299299
"T6": "Team 6",
300300
"T7": "Team 7",
301301
"T8": "Team 8",
302-
"T9": "Team 9"
302+
"T9": "Team 9",
303+
"T10": "Team 10",
304+
"T11": "Team 11"
303305
}
304306
],
305307
"3000": [

sc2reader/objects.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,11 +212,11 @@ def __init__(self, pid, slot_data, detail_data, attribute_data):
212212

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

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

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

0 commit comments

Comments
 (0)