diff --git a/distribution/changelog.txt b/distribution/changelog.txt index 67886b54f4..db52eb61c9 100644 --- a/distribution/changelog.txt +++ b/distribution/changelog.txt @@ -29,6 +29,7 @@ - Feature: [#14171] [Plugin] Add API for creating custom widgets. - Feature: [#14171] [Plugin] Add API for drawing graphics for custom widgets. - Feature: [#14171] [Plugin] Add click event to spinners and allow them to be held down. +- Feature: [#14252] [Plugin] Add API for vehicle g-forces. - Change: [#13346] [Plugin] Renamed FootpathScenery to FootpathAddition, fix typos. - Change: [#13857] Change Rotation Control Toggle to track element number 256 - Fix: [#4605, #11912] Water palettes are not updated properly when selected in Object Selection. diff --git a/src/openrct2/scripting/ScriptEngine.cpp b/src/openrct2/scripting/ScriptEngine.cpp index 1892c0d48b..00f167150c 100644 --- a/src/openrct2/scripting/ScriptEngine.cpp +++ b/src/openrct2/scripting/ScriptEngine.cpp @@ -44,7 +44,7 @@ using namespace OpenRCT2; using namespace OpenRCT2::Scripting; -static constexpr int32_t OPENRCT2_PLUGIN_API_VERSION = 23; +static constexpr int32_t OPENRCT2_PLUGIN_API_VERSION = 24; struct ExpressionStringifier final {