1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-18 12:33:17 +01:00

Raise maximum entrance fee to £200

It could even be higher, depending on the initial guest cash, but this should do for now
This commit is contained in:
Gymnasiast
2017-07-04 15:23:12 +02:00
parent 56987960b3
commit b0fece095c
2 changed files with 2 additions and 1 deletions

View File

@@ -1216,7 +1216,7 @@ static void window_park_price_mousedown(rct_widgetindex widgetIndex, rct_window*
window_park_set_page(w, widgetIndex - WIDX_TAB_1);
break;
case WIDX_INCREASE_PRICE:
newFee = min(MONEY(100,00), gParkEntranceFee + MONEY(1,00));
newFee = min(MONEY(200,00), gParkEntranceFee + MONEY(1,00));
park_set_entrance_fee(newFee);
break;
case WIDX_DECREASE_PRICE: