mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2025-12-10 09:32:29 +01:00
This commit is contained in:
committed by
Michael Steenbeek
parent
2b6e925744
commit
519ea1c8c3
@@ -12,6 +12,7 @@
|
|||||||
- Fix: [#10228] Can't import RCT1 Deluxe from Steam.
|
- Fix: [#10228] Can't import RCT1 Deluxe from Steam.
|
||||||
- Fix: [#10313] Path furniture can be placed on level crossings.
|
- Fix: [#10313] Path furniture can be placed on level crossings.
|
||||||
- Fix: [#10325] Crash when banners have no text.
|
- Fix: [#10325] Crash when banners have no text.
|
||||||
|
- Fix: [#10376] No ratings generated when a shop and track intersect.
|
||||||
- Fix: [#10420] Money effect causing false positive desync.
|
- Fix: [#10420] Money effect causing false positive desync.
|
||||||
- Fix: [#10477] Large Scenery cannot be placed higher using SHIFT.
|
- Fix: [#10477] Large Scenery cannot be placed higher using SHIFT.
|
||||||
- Fix: [#10489] Hosts last player action not being synchronized.
|
- Fix: [#10489] Hosts last player action not being synchronized.
|
||||||
|
|||||||
@@ -31,7 +31,7 @@
|
|||||||
// This string specifies which version of network stream current build uses.
|
// This string specifies which version of network stream current build uses.
|
||||||
// It is used for making sure only compatible builds get connected, even within
|
// It is used for making sure only compatible builds get connected, even within
|
||||||
// single OpenRCT2 version.
|
// single OpenRCT2 version.
|
||||||
#define NETWORK_STREAM_VERSION "11"
|
#define NETWORK_STREAM_VERSION "12"
|
||||||
#define NETWORK_STREAM_ID OPENRCT2_VERSION "-" NETWORK_STREAM_VERSION
|
#define NETWORK_STREAM_ID OPENRCT2_VERSION "-" NETWORK_STREAM_VERSION
|
||||||
|
|
||||||
static Peep* _pickup_peep = nullptr;
|
static Peep* _pickup_peep = nullptr;
|
||||||
|
|||||||
@@ -220,6 +220,12 @@ static void ride_ratings_update_state_2()
|
|||||||
continue;
|
continue;
|
||||||
if (tileElement->base_height != z)
|
if (tileElement->base_height != z)
|
||||||
continue;
|
continue;
|
||||||
|
if (tileElement->AsTrack()->GetRideIndex() != ride->id)
|
||||||
|
{
|
||||||
|
// Only check that the track belongs to the same ride if ride does not have buildable track
|
||||||
|
if (!ride_type_has_flag(ride->type, RIDE_TYPE_FLAG_HAS_TRACK))
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
if (trackType == 255
|
if (trackType == 255
|
||||||
|| (tileElement->AsTrack()->GetSequenceIndex() == 0 && trackType == tileElement->AsTrack()->GetTrackType()))
|
|| (tileElement->AsTrack()->GetSequenceIndex() == 0 && trackType == tileElement->AsTrack()->GetTrackType()))
|
||||||
@@ -331,6 +337,12 @@ static void ride_ratings_update_state_5()
|
|||||||
continue;
|
continue;
|
||||||
if (tileElement->base_height != z)
|
if (tileElement->base_height != z)
|
||||||
continue;
|
continue;
|
||||||
|
if (tileElement->AsTrack()->GetRideIndex() != ride->id)
|
||||||
|
{
|
||||||
|
// Only check that the track belongs to the same ride if ride does not have buildable track
|
||||||
|
if (!ride_type_has_flag(ride->type, RIDE_TYPE_FLAG_HAS_TRACK))
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
if (trackType == 255 || trackType == tileElement->AsTrack()->GetTrackType())
|
if (trackType == 255 || trackType == tileElement->AsTrack()->GetTrackType())
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user