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:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user