pixi-rainman-game-engine 0.1.11 → 0.1.12

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.
@@ -602,6 +602,8 @@ export class AbstractController {
602
602
  SoundManager.pause(SoundTracks.mysteryDrawLoop);
603
603
  this.updateUiValues(winAmount);
604
604
  this._lastWinAmount += winAmount;
605
+ if (RainMan.settingsStore.isFreeSpinsPlayEnabled)
606
+ this.uiController.increaseTotalFreeSpinWinAmount(winAmount);
605
607
  await new Promise((resolve) => {
606
608
  this.resolveMysteryWin = resolve;
607
609
  setTimeout(() => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pixi-rainman-game-engine",
3
- "version": "0.1.11",
3
+ "version": "0.1.12",
4
4
  "description": "This repository contains all of the mechanics that used in rainman games.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",