diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-07-30 12:35:30 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-07-30 12:35:30 +0200 |
| commit | 4842346f39592672c5fa86547fb36f03847210ad (patch) | |
| tree | b974fd8aaa94bedca04b3e26a7d08643c5f3e4ee | |
| parent | 9390318b8f2459704546b202dce3f3b3e4c569c3 (diff) | |
| download | reaper-4842346f39592672c5fa86547fb36f03847210ad.tar.gz reaper-4842346f39592672c5fa86547fb36f03847210ad.zip | |
separate player from participant
| -rw-r--r-- | app.js | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -84,7 +84,6 @@ async function load(table, type, includes, filter) { await Promise.all([ load(model.Participant, "participant", [ model.ParticipantStats, - model.Player, model.Roster, model.Match, @@ -104,7 +103,7 @@ async function load(table, type, includes, filter) { }, model.Series, model.Hero, model.GameMode, model.Role ]), - //load(model.Player, "player", [ model.Region ]), + load(model.Player, "player", [ model.Region ]), ]); })(); |
