diff --git a/src/openrct2-ui/windows/TileInspector.cpp b/src/openrct2-ui/windows/TileInspector.cpp index f86e7b0a6a..f6911ed71f 100644 --- a/src/openrct2-ui/windows/TileInspector.cpp +++ b/src/openrct2-ui/windows/TileInspector.cpp @@ -663,10 +663,6 @@ static void window_tile_inspector_copy_element(rct_window* w) static void window_tile_inspector_paste_element(rct_window* w) { - // Construct the data to send using the surface's properties - int32_t data[4]; - std::memcpy(&data[0], &tileInspectorCopiedElement, 8); - assert_struct_size(data, sizeof(tileInspectorCopiedElement)); auto modifyTile = TileModifyAction(windowTileInspectorToolMap, TileModifyType::AnyPaste, 0, 0, tileInspectorCopiedElement); GameActions::Execute(&modifyTile); } diff --git a/src/openrct2/network/Network.cpp b/src/openrct2/network/Network.cpp index 5ef41817c8..e3dea98434 100644 --- a/src/openrct2/network/Network.cpp +++ b/src/openrct2/network/Network.cpp @@ -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 "5" +#define NETWORK_STREAM_VERSION "6" #define NETWORK_STREAM_ID OPENRCT2_VERSION "-" NETWORK_STREAM_VERSION static Peep* _pickup_peep = nullptr;