1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-06 06:32:56 +01:00

Fix remaining formatting issue

Remaining formatting error adjusted in SmallSceneryPlaceAction for CI tests
This commit is contained in:
Trevor Harkness
2019-04-19 02:38:38 -04:00
parent 844a28f3f5
commit 0dfa079002

View File

@@ -200,7 +200,8 @@ public:
{
if (static_cast<int32_t>((surfaceElement->AsSurface()->GetWaterHeight() * 16)) > targetHeight)
{
return std::make_unique<SmallSceneryPlaceActionResult>(GA_ERROR::DISALLOWED, STR_CAN_ONLY_BUILD_THIS_ON_LAND);
return std::make_unique<SmallSceneryPlaceActionResult>(
GA_ERROR::DISALLOWED, STR_CAN_ONLY_BUILD_THIS_ON_LAND);
}
}
}