Skip to content

Commit

Permalink
Fix "default odds" for clocks
Browse files Browse the repository at this point in the history
  • Loading branch information
cwegrzyn committed Dec 2, 2024
1 parent f9ee35e commit 5ebcb4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/clocks/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export async function advanceClock(
"Select number of segments to fill.",
);

const defaultOdds = clockInfo.raw.defaultOdds;
const defaultOdds = clockInfo.raw["default-odds"];
let wrapClockUpdates: (nodes: Node[]) => Node[];
if (defaultOdds !== "no roll") {
const oddsIndex = namedOddsSchema.options.findIndex(
Expand Down

0 comments on commit 5ebcb4f

Please sign in to comment.