1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-04 13:42:55 +01:00

Fix serialisation of PlaceParkEntranceAction

This commit is contained in:
Michael Steenbeek
2021-04-15 21:32:26 +02:00
committed by GitHub
parent 3a51145567
commit bbf33b6577
2 changed files with 2 additions and 1 deletions

View File

@@ -37,6 +37,7 @@ void PlaceParkEntranceAction::Serialise(DataSerialiser& stream)
GameAction::Serialise(stream);
stream << DS_TAG(_loc);
stream << DS_TAG(_pathType);
}
GameActions::Result::Ptr PlaceParkEntranceAction::Query() const

View File

@@ -36,7 +36,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 "11"
#define NETWORK_STREAM_VERSION "12"
#define NETWORK_STREAM_ID OPENRCT2_VERSION "-" NETWORK_STREAM_VERSION
static Peep* _pickup_peep = nullptr;