diff --git a/src/openrct2/Game.h b/src/openrct2/Game.h index 5c44fee7c3..68ef7e65df 100644 --- a/src/openrct2/Game.h +++ b/src/openrct2/Game.h @@ -95,7 +95,6 @@ enum class GameCommand : int32_t ModifyTile, EditScenarioOptions, PlacePeepSpawn, - SetClimate, SetColourScheme, SetStaffCostume, PlaceFootpathAddition, diff --git a/src/openrct2/network/NetworkAction.cpp b/src/openrct2/network/NetworkAction.cpp index ae7d2b1f3b..ce557c0d21 100644 --- a/src/openrct2/network/NetworkAction.cpp +++ b/src/openrct2/network/NetworkAction.cpp @@ -262,7 +262,6 @@ const std::array(NetworkPermission::Count)> N "PERMISSION_EDIT_SCENARIO_OPTIONS", { GameCommand::EditScenarioOptions, - GameCommand::SetClimate, }, }, }; diff --git a/src/openrct2/scripting/ScriptEngine.cpp b/src/openrct2/scripting/ScriptEngine.cpp index 32d0a59838..e9394789f7 100644 --- a/src/openrct2/scripting/ScriptEngine.cpp +++ b/src/openrct2/scripting/ScriptEngine.cpp @@ -1358,7 +1358,6 @@ const static EnumMap ActionNameToType = { { "bannersetname", GameCommand::SetBannerName }, { "bannersetstyle", GameCommand::SetBannerStyle }, { "clearscenery", GameCommand::ClearScenery }, - { "climateset", GameCommand::SetClimate }, { "footpathplace", GameCommand::PlacePath }, { "footpathlayoutplace", GameCommand::PlacePathLayout }, { "footpathremove", GameCommand::RemovePath },