Skip to content

Commit

Permalink
Merge pull request #10011 from Gymnasiast/fix/9970-b
Browse files Browse the repository at this point in the history
Cherry-pick fix from #9987
  • Loading branch information
Gymnasiast committed Sep 22, 2019
2 parents 5e1d14f + 856075a commit 48edea2
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions distribution/changelog.txt
Expand Up @@ -21,6 +21,7 @@
- Fix: [#9902] Doors/Portcullis do not check to make sure doors are open causing double opens.
- Fix: [#9926] Africa - Oasis park has wrong peep spawn (original bug).
- Fix: [#9957] When using 'no money' cheat, guests complain of running out of cash.
- Fix: [#9970] Wait for quarter load fails.
- Improved: [#9466] Add the rain weather effect to the OpenGL renderer.

0.2.3 (2019-07-10)
Expand Down
2 changes: 1 addition & 1 deletion src/openrct2/network/Network.cpp
Expand Up @@ -34,7 +34,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 "13"
#define NETWORK_STREAM_VERSION "14"
#define NETWORK_STREAM_ID OPENRCT2_VERSION "-" NETWORK_STREAM_VERSION

static Peep* _pickup_peep = nullptr;
Expand Down
1 change: 0 additions & 1 deletion src/openrct2/ride/Vehicle.cpp
Expand Up @@ -2406,7 +2406,6 @@ static void vehicle_update_waiting_for_passengers(rct_vehicle* vehicle)

if (load == 0)
{
vehicle->update_flags |= VEHICLE_UPDATE_FLAG_TRAIN_READY_DEPART;
train_ready_to_depart(vehicle, num_peeps_on_train, num_used_seats_on_train);
return;
}
Expand Down

0 comments on commit 48edea2

Please sign in to comment.