patreon reward bonuses increased slightly
This commit is contained in:
parent
11ed2aaba8
commit
e40a458dc5
1 changed files with 5 additions and 5 deletions
|
@ -122,11 +122,11 @@ public sealed class CurrencyRewardService : IEService, IReadyExecutor
|
||||||
var dollarValue = pledgeCents / 100;
|
var dollarValue = pledgeCents / 100;
|
||||||
percentBonus = dollarValue switch
|
percentBonus = dollarValue switch
|
||||||
{
|
{
|
||||||
>= 100 => 20,
|
>= 100 => 25,
|
||||||
>= 50 => 10,
|
>= 50 => 20,
|
||||||
>= 20 => 5,
|
>= 20 => 15,
|
||||||
>= 10 => 3,
|
>= 10 => 10,
|
||||||
>= 5 => 1,
|
>= 5 => 5,
|
||||||
_ => 0
|
_ => 0
|
||||||
};
|
};
|
||||||
return (long)(modifiedAmount * (1 + (percentBonus / 100.0f)));
|
return (long)(modifiedAmount * (1 + (percentBonus / 100.0f)));
|
||||||
|
|
Loading…
Reference in a new issue