summaryrefslogtreecommitdiff
path: root/gamelocker
diff options
context:
space:
mode:
Diffstat (limited to 'gamelocker')
-rw-r--r--gamelocker/datatypes.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/gamelocker/datatypes.py b/gamelocker/datatypes.py
index 92848ad..cf89fad 100644
--- a/gamelocker/datatypes.py
+++ b/gamelocker/datatypes.py
@@ -38,7 +38,7 @@ class Player(DataMessage):
key_id = attr(str, "id")
name = attr(str, "name")
- stats = rel(dict, "stats")
+ stats = attr(dict, "stats")
class Participant(DataMessage):
@@ -46,7 +46,7 @@ class Participant(DataMessage):
key_id = attr(str, "id")
actor = attr(str, "actor")
- stats = attr(str, "stats")
+ stats = attr(dict, "stats")
player = rel(Player, "player")
@@ -62,7 +62,7 @@ class Roster(DataMessage):
type_name = "roster"
key_id = attr(str, "id")
- stats = attr(str, "stats")
+ stats = attr(dict, "stats")
participants = rel(Participant, "participants")
team = rel(Team, "team")