Skip to content

Commit

Permalink
Use win expectancy not odds
Browse files Browse the repository at this point in the history
  • Loading branch information
rcy committed Oct 31, 2024
1 parent a5ce659 commit 3a2618b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions handlers/mlb/gameodds.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,10 @@ func GameOdds(params bot.HandlerParams) error {
params.Privmsgf(params.Target, "%s %d [%.0f%%], %s %d [%.0f%%], %d out %s %d %s",
g[0].Schedule.AwayTeamName,
g[0].Scores.AwayScore,
g[0].Schedule.AwayGameOdds*100,
g[0].Scores.LiveWEAway*100,
g[0].Schedule.HomeTeamName,
g[0].Scores.HomeScore,
g[0].Schedule.HomeGameOdds*100,
g[0].Scores.LiveWEHome*100,
g[0].Scores.Outs,
half,
g[0].Scores.Inning,
Expand Down

0 comments on commit 3a2618b

Please sign in to comment.