@tungstenstudio/outschart-generator 1.0.0-rc.1 → 1.0.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tungstenstudio/outschart-generator",
3
- "version": "1.0.0-rc.1",
3
+ "version": "1.0.0",
4
4
  "description": "Darts outs/checkout chart generator with pre-computed lookups and a miss-aware recommendation engine",
5
5
  "type": "module",
6
6
  "sideEffects": false,
package/src/recommend.ts CHANGED
@@ -381,7 +381,7 @@ export function generateRecommended(options: {
381
381
  const isDoubleOut = outMode === 'double';
382
382
  const min = options.min ?? (isDoubleOut ? 2 : 1);
383
383
  const max = options.max ?? (isDoubleOut ? 170 : 180);
384
- const includeAlternates = options.includeAlternates ?? (outMode === 'single');
384
+ const includeAlternates = options.includeAlternates ?? false;
385
385
  const altThreshold = options.altThreshold ?? 1.0;
386
386
 
387
387
  // Build overrides: start with defaults for single-out, merge user overrides