increase modifier price increase
This commit is contained in:
parent
969496bb22
commit
2c6152f210
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@ namespace TouchyTickets.Attractions {
|
|||
|
||||
public BigInteger GetModifierPrice(AttractionModifier modifier) {
|
||||
var amount = this.GetModifierAmount(modifier);
|
||||
return (BigInteger) Math.Ceiling(modifier.InitialPrice * Math.Pow(1 + 0.4F, amount));
|
||||
return (BigInteger) Math.Ceiling(modifier.InitialPrice * Math.Pow(1 + 0.45F, amount));
|
||||
}
|
||||
|
||||
public void Wobble() {
|
||||
|
|
Loading…
Reference in a new issue