From 0dfa079002dc65c1a2fb29aa0da17b54107924d2 Mon Sep 17 00:00:00 2001 From: Trevor Harkness Date: Fri, 19 Apr 2019 02:38:38 -0400 Subject: [PATCH] Fix remaining formatting issue Remaining formatting error adjusted in SmallSceneryPlaceAction for CI tests --- src/openrct2/actions/SmallSceneryPlaceAction.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/openrct2/actions/SmallSceneryPlaceAction.hpp b/src/openrct2/actions/SmallSceneryPlaceAction.hpp index 40aca0778c..da3e4b501e 100644 --- a/src/openrct2/actions/SmallSceneryPlaceAction.hpp +++ b/src/openrct2/actions/SmallSceneryPlaceAction.hpp @@ -200,7 +200,8 @@ public: { if (static_cast((surfaceElement->AsSurface()->GetWaterHeight() * 16)) > targetHeight) { - return std::make_unique(GA_ERROR::DISALLOWED, STR_CAN_ONLY_BUILD_THIS_ON_LAND); + return std::make_unique( + GA_ERROR::DISALLOWED, STR_CAN_ONLY_BUILD_THIS_ON_LAND); } } }