mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-26 00:04:43 +01:00
Merge pull request #6068 from duncanspumpkin/fix_5629
Fix 5629: Issue with tower ride modes approach to station
This commit is contained in:
@@ -55,7 +55,7 @@ extern "C" {
|
||||
// This define 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 "11"
|
||||
#define NETWORK_STREAM_VERSION "12"
|
||||
#define NETWORK_STREAM_ID OPENRCT2_VERSION "-" NETWORK_STREAM_VERSION
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
||||
@@ -1707,7 +1707,7 @@ static void vehicle_update_moving_to_end_of_station(rct_vehicle *vehicle){
|
||||
vehicle->acceleration = -3298;
|
||||
}
|
||||
if (vehicle->velocity < -131940){
|
||||
vehicle->velocity = vehicle->velocity / 16;
|
||||
vehicle->velocity -= vehicle->velocity / 16;
|
||||
vehicle->acceleration = 0;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user