Skip to content

Commit 4c0d313

Browse files
committed
Make normal button rarer
1 parent 45ea04a commit 4c0d313

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

QuestPatcher/DialogBuilder.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ public Task<bool> OpenDialogue(Window? parentWindow = null, WindowStartupLocatio
175175

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

0 commit comments

Comments
 (0)