@mtgame/core 0.1.27 → 0.1.28

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.
@@ -3755,7 +3755,12 @@
3755
3755
  configurable: true
3756
3756
  });
3757
3757
  FootballGameLog.prototype.isScoreType = function () {
3758
- return [exports.FootballGameLogTypes.goal, exports.FootballGameLogTypes.penalty_goal, exports.FootballGameLogTypes.small_penalty_goal].indexOf(this.logType) > -1;
3758
+ return [
3759
+ exports.FootballGameLogTypes.goal,
3760
+ exports.FootballGameLogTypes.penalty_goal,
3761
+ exports.FootballGameLogTypes.small_penalty_goal,
3762
+ exports.FootballGameLogTypes.auto_goal,
3763
+ ].indexOf(this.logType) > -1;
3759
3764
  };
3760
3765
  FootballGameLog.prototype.isAfter = function (log) {
3761
3766
  if (this.time === log.time && this.period === log.period) {