@mtgame/core 0.1.52 → 0.1.53

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2241,10 +2241,10 @@
2241
2241
  return null;
2242
2242
  }
2243
2243
  if (this.isTeamWon) {
2244
- return this.team.id;
2244
+ return this.team.id || this.teamId;
2245
2245
  }
2246
2246
  if (this.isCompetitorTeamWon) {
2247
- return this.competitorTeam.id;
2247
+ return this.competitorTeam.id || this.competitorTeamId;
2248
2248
  }
2249
2249
  return null;
2250
2250
  },