@mtgame/core 0.0.30 → 0.0.31

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.
@@ -2790,7 +2790,7 @@
2790
2790
  Object.defineProperty(HockeyStatistic.prototype, "userMinutes", {
2791
2791
  get: function () {
2792
2792
  var minutes = Math.floor(this.gameTime / 60);
2793
- var seconds = this.gameTime - minutes * 60;
2793
+ var seconds = Math.floor(this.gameTime - minutes * 60);
2794
2794
  return "" + (minutes < 10 ? 0 : '') + minutes + ":" + (seconds < 10 ? 0 : '') + seconds;
2795
2795
  },
2796
2796
  enumerable: true,