1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 19:13:07 +01:00

Close #13346: Change FootpathScenery to FootpathAddition (#13350)

This commit is contained in:
Sadret
2020-11-03 09:17:29 +01:00
committed by GitHub
parent 68bd035f12
commit c2d309af38
12 changed files with 38 additions and 37 deletions

View File

@@ -43,7 +43,7 @@
using namespace OpenRCT2;
using namespace OpenRCT2::Scripting;
static constexpr int32_t OPENRCT2_PLUGIN_API_VERSION = 7;
static constexpr int32_t OPENRCT2_PLUGIN_API_VERSION = 8;
struct ExpressionStringifier final
{
@@ -963,8 +963,8 @@ const static std::unordered_map<std::string, uint32_t> ActionNameToType = {
{ "footpathplace", GAME_COMMAND_PLACE_PATH },
{ "footpathplacefromtrack", GAME_COMMAND_PLACE_PATH_FROM_TRACK },
{ "footpathremove", GAME_COMMAND_REMOVE_PATH },
{ "footpathsceneryplace", GAME_COMMAND_PLACE_FOOTPATH_SCENERY },
{ "footpathsceneryremove", GAME_COMMAND_REMOVE_FOOTPATH_SCENERY },
{ "footpathadditionplace", GAME_COMMAND_PLACE_FOOTPATH_ADDITION },
{ "footpathadditionremove", GAME_COMMAND_REMOVE_FOOTPATH_ADDITION },
{ "guestsetflags", GAME_COMMAND_GUEST_SET_FLAGS },
{ "guestsetname", GAME_COMMAND_SET_GUEST_NAME },
{ "landbuyrights", GAME_COMMAND_BUY_LAND_RIGHTS },