@mtgame/core 0.2.12 → 0.2.13
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.
|
@@ -11828,7 +11828,7 @@
|
|
|
11828
11828
|
});
|
|
11829
11829
|
Object.defineProperty(WaterpoloGameStatistic.prototype, "totalShots", {
|
|
11830
11830
|
get: function () {
|
|
11831
|
-
return this.shots +
|
|
11831
|
+
return this.shots + this.shootoutShots;
|
|
11832
11832
|
},
|
|
11833
11833
|
enumerable: false,
|
|
11834
11834
|
configurable: true
|
|
@@ -11933,8 +11933,7 @@
|
|
|
11933
11933
|
});
|
|
11934
11934
|
Object.defineProperty(WaterpoloGameStatistic.prototype, "totalFouls", {
|
|
11935
11935
|
get: function () {
|
|
11936
|
-
return (this.fouls || 0) + (this.
|
|
11937
|
-
(this.minorPenalties || 0) + (this.majorPenalties || 0) + (this.matchPenalties || 0);
|
|
11936
|
+
return (this.fouls || 0) + (this.personalFouls || 0);
|
|
11938
11937
|
},
|
|
11939
11938
|
enumerable: false,
|
|
11940
11939
|
configurable: true
|