Skip to content

Commit

Permalink
Make important text rarer
Browse files Browse the repository at this point in the history
  • Loading branch information
Lauriethefish committed Jun 12, 2021
1 parent 1f64e5c commit b57d09e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion QuestPatcher/Views/DialogBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ public Task<bool> OpenDialogue(Window? parentWindow = null, bool centerWithinWin

// Make sure to only show the normal button pretty rarely
Button normalButton = dialogue.FindControl<Button>("NormalButton");
if (Random.Next(5) == 0)
if (Random.Next(20) == 0)
{
normalButton.IsVisible = true;
normalButton.Click += (_, _) =>
Expand Down

0 comments on commit b57d09e

Please sign in to comment.