@slot-engine/core 0.1.12 → 0.1.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.
package/dist/index.mjs CHANGED
@@ -3624,7 +3624,7 @@ var GeneratedReelSet = class extends ReelSet {
3624
3624
  `Error generating reels for game mode "${this.associatedGameModeName}". It's not defined in the game config.`
3625
3625
  );
3626
3626
  }
3627
- const outputDir = path7.join(config.rootDir, config.outputDir);
3627
+ const outputDir = config.rootDir.endsWith(config.outputDir) ? config.rootDir : path7.join(config.rootDir, config.outputDir);
3628
3628
  const filePath = path7.join(
3629
3629
  outputDir,
3630
3630
  `reels_${this.associatedGameModeName}-${this.id}.csv`