diff --git a/src/openrct2/network/network.h b/src/openrct2/network/network.h index 1a6b0178b3..b226cca4f6 100644 --- a/src/openrct2/network/network.h +++ b/src/openrct2/network/network.h @@ -55,7 +55,7 @@ extern "C" { // This define 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 #ifdef __cplusplus diff --git a/src/openrct2/world/tile_inspector.c b/src/openrct2/world/tile_inspector.c index a87ec8b956..f87e8f24fd 100644 --- a/src/openrct2/world/tile_inspector.c +++ b/src/openrct2/world/tile_inspector.c @@ -74,20 +74,20 @@ sint32 tile_inspector_insert_corrupt_at(sint32 x, sint32 y, sint16 elementIndex, if (flags & GAME_COMMAND_FLAG_APPLY) { // Create new corrupt element - rct_map_element *curruptElement = map_element_insert(x, y, -1, 0); // Ugly hack: -1 guarantees this to be placed first - if (curruptElement == NULL) + rct_map_element *corruptElement = map_element_insert(x, y, -1, 0); // Ugly hack: -1 guarantees this to be placed first + if (corruptElement == NULL) { log_warning("Failed to insert corrupt element."); return MONEY32_UNDEFINED; } - curruptElement->type = MAP_ELEMENT_TYPE_CORRUPT; + corruptElement->type = MAP_ELEMENT_TYPE_CORRUPT; // Set the base height to be the same as the selected element rct_map_element *const selectedElement = map_get_nth_element_at(x, y, elementIndex); if (!selectedElement) { return MONEY32_UNDEFINED; } - curruptElement->base_height = curruptElement->clearance_height = selectedElement->base_height; + corruptElement->base_height = corruptElement->clearance_height = selectedElement->base_height; // Move the corrupt element up until the selected list item is reached // this way it's placed under the selected element, even when there are multiple elements with the same base height