mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-15 11:03:00 +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:
@@ -9,6 +9,7 @@
|
||||
- Feature: [#5611] Add support for Android
|
||||
- Feature: [#5706] Add support for OpenBSD
|
||||
- Feature: OpenRCT2 now starts up on the display it was last shown on.
|
||||
- Feature: Park entrance fee can now be set to amounts up to £200.
|
||||
- Improved: Construction rights can now be placed on park entrances.
|
||||
- Improved: Mouse can now be dragged to select scenery when saving track designs
|
||||
- Fix: [#259] Money making glitch involving swamps (original bug)
|
||||
|
||||
@@ -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