From 918bd015b5efb4068d1f4945df31b1393cae6970 Mon Sep 17 00:00:00 2001 From: Bas Date: Tue, 29 Dec 2020 15:36:00 +0100 Subject: [PATCH] Increment plugin version, update changelog --- distribution/changelog.txt | 1 + src/openrct2/scripting/ScriptEngine.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/distribution/changelog.txt b/distribution/changelog.txt index bf74577516..64237d8dda 100644 --- a/distribution/changelog.txt +++ b/distribution/changelog.txt @@ -11,6 +11,7 @@ - Feature: [#13509] [Plugin] Add ability to format strings using OpenRCT2 string framework. - Feature: [#13512] [Plugin] Add item separators to list view. - Feature: [#13583] [Plugin] Add allowed_hosts to plugin section of config. +- Feature: [#13593] [Plugin] Add ability to read and change the position of ride vehicles. - Feature: [#13614] Add terrain surfaces from RollerCoaster Tycoon 1. - Change: [#13346] [Plugin] Renamed FootpathScenery to FootpathAddition, fix typos. - Fix: [#12895] Mechanics are called to repair rides that have already been fixed. diff --git a/src/openrct2/scripting/ScriptEngine.cpp b/src/openrct2/scripting/ScriptEngine.cpp index 0eb59fac37..c86c81eeeb 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 = 15; +static constexpr int32_t OPENRCT2_PLUGIN_API_VERSION = 16; struct ExpressionStringifier final {