mlbserver 2025.7.21 → 2025.7.26

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/session.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mlbserver",
3
- "version": "2025.07.21",
3
+ "version": "2025.07.26",
4
4
  "description": "",
5
5
  "repository": {
6
6
  "type": "git",
package/session.js CHANGED
@@ -4218,7 +4218,7 @@ class sessionClass {
4218
4218
  }
4219
4219
 
4220
4220
  let basesit = this.basesit(first, second, third)
4221
- let innbaseout = currentInning.toString() + half.toString() + basesit.toString() + outs.toString()
4221
+ let innbaseout = ((currentInning > 9) ? 9 : currentInning).toString() + half.toString() + basesit.toString() + outs.toString()
4222
4222
 
4223
4223
  games.push({
4224
4224
  'gamePk': game.gamePk,