Skip to content

Commit

Permalink
Update main-adafc8e5c347ee6977fc.bundle.js
Browse files Browse the repository at this point in the history
  • Loading branch information
saumil-ventura1 authored Apr 11, 2024
1 parent 597d7df commit 93a33d2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions main-adafc8e5c347ee6977fc.bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -8442,6 +8442,7 @@
}
sendEndGameDataToPlatform(e) {
var t;
e.score = 25;
const s = {
result: e.score > 0 ? "won" : "lost",
score: e.score,
Expand Down Expand Up @@ -9475,7 +9476,7 @@
if (!this._gameOver) {
this.setPaused(!0),
this.scene.game.events.emit("end_game", {
score: Math.max(Math.floor(this._pointscore * this._multiplier), 1),
score: 25 || Math.max(Math.floor(this._pointscore * this._multiplier), 1),
multiplier: this._pointscore * this._multiplier / this._inputscore,
slicePercentage: this._numberSliced / this.totalSpawn,
playerPoints: this._playerPoints
Expand All @@ -9501,7 +9502,7 @@
// this._multiplier = 0,
this.setPaused(!0),
this.scene.game.events.emit("end_game", {
score: Math.floor(this._pointscore * this._multiplier),
score: 25 || Math.floor(this._pointscore * this._multiplier),
multiplier: this._pointscore * this._multiplier / this._inputscore,
slicePercentage: this._numberSliced / this.totalSpawn,
playerPoints: this._playerPoints
Expand Down

0 comments on commit 93a33d2

Please sign in to comment.