Skip to content

Commit

Permalink
change default price for circus to $1.20
Browse files Browse the repository at this point in the history
in line with suggestion in issue
  • Loading branch information
733737 committed Dec 15, 2023
1 parent 004592b commit f511a68
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion distribution/changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,23 @@
- Feature: [#20825] Made setting the game speed a game action.
- Feature: [#20853] [Plugin] Add “BaseTileElement.owner” which is saved in the park file.
- Change: [#20790] Default ride price set to free if park charges for entry.
- Change: [#20880] Restore removed default coaster colours.
- Fix: [#13473] Guests complain that the default Circus price is too high.
- Fix: [#15293] TTF fonts don’t format correctly with OpenGL.
- Fix: [#16453] Tile inspector invisibility shortcut does not use a game action.
- Fix: [#17774] Misplaced/missing land and construction rights tiles in RCT1 & RCT2 scenarios.
- Fix: [#18199] Dots in the game save's name no longer get truncated.
- Fix: [#19722] “Forbid tree removal” restriction doesn't forbid removal of large scenery tree items.
- Fix: [#20253] Crash when displaying a Lay-Down RC’s half loop.
- Fix: [#20356] Cannot set tertiary colour on small scenery.
- Fix: [#20624] Scrolling text glitches after language is changed.
- Fix: [#20679] Android: game crashes at launch.
- Fix: [#20737] Spent money in player window underflows when getting refunds.
- Fix: [#20747] Staff speed cheat not applying to newly hired staff, UI not showing the current applied speed.
- Fix: [#20778] [Plugin] Incorrect target api when executing custom actions.
- Fix: [#20807] Tertiary colour not copied with small scenery.
- Fix: [#20964] Crash when player connects to server with a group assigned that no longer exists.
- Fix: [#20624] Scrolling text glitches after language is changed.
- Fix: [#20995] TTF fonts don’t support hinting, outlines, or insets with OpenGL.

0.4.6 (2023-09-03)
------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion src/openrct2/network/NetworkBase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
// It is used for making sure only compatible builds get connected, even within
// single OpenRCT2 version.

#define NETWORK_STREAM_VERSION "10"
#define NETWORK_STREAM_VERSION "11"

#define NETWORK_STREAM_ID OPENRCT2_VERSION "-" NETWORK_STREAM_VERSION

Expand Down
2 changes: 1 addition & 1 deletion src/openrct2/ride/gentle/meta/Circus.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ constexpr RideTypeDescriptor CircusRTD =
SET_FIELD(RatingsMultipliers, { 20, 10, 0 }),
SET_FIELD(UpkeepCosts, { 50, 1, 0, 0, 0, 0 }),
SET_FIELD(BuildCosts, { 62.50_GBP, 1.00_GBP, 1, }),
SET_FIELD(DefaultPrices, { 15, 0 }),
SET_FIELD(DefaultPrices, { 12, 0 }),
SET_FIELD(DefaultMusic, {}),
SET_FIELD(PhotoItem, ShopItem::Photo),
SET_FIELD(BonusValue, 39),
Expand Down

0 comments on commit f511a68

Please sign in to comment.