1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-22 15:23:01 +01:00

Fix #14854. Accidental double inversion (#14855)

This commit is contained in:
Duncan
2021-06-08 22:09:31 +01:00
committed by GitHub
parent 1031be9078
commit b0af3abb39

View File

@@ -94,7 +94,7 @@ namespace OpenRCT2::TileInspector
GameActionResultPtr InsertCorruptElementAt(const CoordsXY& loc, int16_t elementIndex, bool isExecuting)
{
// Make sure there is enough space for the new element
if (!!MapCheckCapacityAndReorganise(loc))
if (!MapCheckCapacityAndReorganise(loc))
return std::make_unique<GameActions::Result>(GameActions::Status::NoFreeElements, STR_NONE);
if (isExecuting)
@@ -359,7 +359,7 @@ namespace OpenRCT2::TileInspector
GameActionResultPtr PasteElementAt(const CoordsXY& loc, TileElement element, bool isExecuting)
{
// Make sure there is enough space for the new element
if (!!MapCheckCapacityAndReorganise(loc))
if (!MapCheckCapacityAndReorganise(loc))
{
return std::make_unique<GameActions::Result>(GameActions::Status::NoFreeElements, STR_NONE);
}