Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
NaluTripician committed May 9, 2024
1 parent 14397b8 commit 6e5b80f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public bool IsApplicable(ChannelCallArguments args)
{
return false;
}
else if (Random.Shared.NextDouble() < this.result.GetApplicationPercentage())
else if (Random.Shared.NextDouble() > this.result.GetApplicationPercentage())
{
return false;
}
Expand Down

0 comments on commit 6e5b80f

Please sign in to comment.