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.
- package/package.json +1 -1
- package/session.js +1 -1
package/package.json
CHANGED
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,
|