mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-15 11:03:00 +01:00
Increase maximum height of Hypercoaster to RCT1 limits
This commit is contained in:
committed by
GitHub
parent
72f605e206
commit
bbd93f93cc
@@ -16,6 +16,7 @@
|
||||
- Change: [#7877] Files are now sorted in logical rather than dictionary order.
|
||||
- Change: [#8427] Ghost elements now show up as white on the mini-map.
|
||||
- Change: [#8688] Move common actions from debug menu into cheats menu.
|
||||
- Change: [#9428] Increase maximum height of the Hypercoaster to RCT1 limits.
|
||||
- Fix: [#2294] Clients crashing the server with invalid object selection.
|
||||
- Fix: [#4568, #5896] Incorrect fences removed when building a tracked ride through
|
||||
- Fix: [#5103] OpenGL: ride track preview not rendered.
|
||||
|
||||
@@ -33,7 +33,7 @@
|
||||
// This string specifies which version of network stream current build uses.
|
||||
// It is used for making sure only compatible builds get connected, even within
|
||||
// single OpenRCT2 version.
|
||||
#define NETWORK_STREAM_VERSION "42"
|
||||
#define NETWORK_STREAM_VERSION "43"
|
||||
#define NETWORK_STREAM_ID OPENRCT2_VERSION "-" NETWORK_STREAM_VERSION
|
||||
|
||||
static Peep* _pickup_peep = nullptr;
|
||||
|
||||
@@ -36,7 +36,7 @@ static constexpr const RideGroup ride_group_corkscrew_rc = {
|
||||
|
||||
static constexpr const RideGroup ride_group_hypercoaster = {
|
||||
/*.RideType =*/RIDE_TYPE_CORKSCREW_ROLLER_COASTER,
|
||||
/*.MaximumHeight =*/45,
|
||||
/*.MaximumHeight =*/55,
|
||||
/*.AvailableTrackPieces =*/(1ULL << TRACK_STRAIGHT) | (1ULL << TRACK_STATION_END) | (1ULL << TRACK_LIFT_HILL)
|
||||
| (1ULL << TRACK_FLAT_ROLL_BANKING) | (1ULL << TRACK_SLOPE) | (1ULL << TRACK_SLOPE_STEEP) | (1ULL << TRACK_SLOPE_CURVE)
|
||||
| (1ULL << TRACK_SLOPE_CURVE_STEEP) | (1ULL << TRACK_S_BEND) | (1ULL << TRACK_CURVE_SMALL) | (1ULL << TRACK_CURVE)
|
||||
|
||||
Reference in New Issue
Block a user