Skip to content

Commit

Permalink
fixed inverted clock labels
Browse files Browse the repository at this point in the history
  • Loading branch information
rsek committed Jan 24, 2022
1 parent 7543cab commit d18b903
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions TheOracle2/Interactions/SlashCommands/AskTheOracleCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ public OracleAskPaths(Random random)
[Summary(description: "The question to ask the oracle.")]
string question,
[Summary(description: "The odds of receiving a 'yes' answer.")]
[Choice("Sure thing (10 or less)", 10),
Choice("Likely (25 or less)", 25),
[Choice("Small chance (10 or less)", 10),
Choice("Unlikely (25 or less)", 25),
Choice("50/50 (50 or less)", 50),
Choice("Unlikely (75 or less)", 75),
Choice("Small chance (90 or less)", 90)]
Choice("Likely (75 or less)", 75),
Choice("Sure thing (90 or less)", 90)]
int odds
)
{
Expand Down

0 comments on commit d18b903

Please sign in to comment.