Skip to content

Commit

Permalink
Make normal button rarer
Browse files Browse the repository at this point in the history
  • Loading branch information
Lauriethefish committed Dec 23, 2023
1 parent 45ea04a commit 4c0d313
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion QuestPatcher/DialogBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ public Task<bool> OpenDialogue(Window? parentWindow = null, WindowStartupLocatio

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

0 comments on commit 4c0d313

Please sign in to comment.