@slot-engine/core 0.1.9 → 0.1.10

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.
package/dist/index.js CHANGED
@@ -3626,12 +3626,6 @@ var GeneratedReelSet = class extends ReelSet {
3626
3626
  chosenSymbolId = prevSymbol.id;
3627
3627
  }
3628
3628
  }
3629
- if (this.preferStackedSymbols && reel.length > 0) {
3630
- const prevSymbol = r - 1 >= 0 ? reel[r - 1] : reel[reel.length - 1];
3631
- if (Math.round(this.rng.randomFloat(1, 100)) <= this.preferStackedSymbols && (!this.spaceBetweenSameSymbols || !this.violatesSpacing(reel, prevSymbol.id, r))) {
3632
- chosenSymbolId = prevSymbol.id;
3633
- }
3634
- }
3635
3629
  const stackCfg = this.resolveStacking(chosenSymbolId, ridx);
3636
3630
  if (stackCfg && this.isSymbolAllowedOnReel(chosenSymbolId, ridx)) {
3637
3631
  const roll = Math.round(this.rng.randomFloat(1, 100));