From 277317b6f1191aee8a2fe983c35e8d285133cd5b Mon Sep 17 00:00:00 2001 From: Gymnasiast Date: Sun, 1 Aug 2021 15:15:33 +0200 Subject: [PATCH] Bump network and plug-in API version --- src/openrct2/network/NetworkBase.cpp | 2 +- src/openrct2/scripting/ScriptEngine.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/openrct2/network/NetworkBase.cpp b/src/openrct2/network/NetworkBase.cpp index 444fa20f7c..e995de63f7 100644 --- a/src/openrct2/network/NetworkBase.cpp +++ b/src/openrct2/network/NetworkBase.cpp @@ -37,7 +37,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 "2" +#define NETWORK_STREAM_VERSION "3" #define NETWORK_STREAM_ID OPENRCT2_VERSION "-" NETWORK_STREAM_VERSION static Peep* _pickup_peep = nullptr; diff --git a/src/openrct2/scripting/ScriptEngine.h b/src/openrct2/scripting/ScriptEngine.h index 132d5055fa..ccba2dc6b3 100644 --- a/src/openrct2/scripting/ScriptEngine.h +++ b/src/openrct2/scripting/ScriptEngine.h @@ -46,7 +46,7 @@ namespace OpenRCT2 namespace OpenRCT2::Scripting { - static constexpr int32_t OPENRCT2_PLUGIN_API_VERSION = 32; + static constexpr int32_t OPENRCT2_PLUGIN_API_VERSION = 33; # ifndef DISABLE_NETWORK class ScSocketBase;