From 1f55720bb5928139522bb74cc1cdea91d76ba790 Mon Sep 17 00:00:00 2001 From: Michael Steenbeek Date: Fri, 13 Nov 2020 10:44:28 +0100 Subject: [PATCH] Remove obsolete object fixes These fixes have since been incorporated into JSON objects. --- src/openrct2/object/SmallSceneryObject.cpp | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/openrct2/object/SmallSceneryObject.cpp b/src/openrct2/object/SmallSceneryObject.cpp index b43d6cb603..497e7e2ba4 100644 --- a/src/openrct2/object/SmallSceneryObject.cpp +++ b/src/openrct2/object/SmallSceneryObject.cpp @@ -161,7 +161,6 @@ void SmallSceneryObject::PerformFixes() // ToonTowner's base blocks. Make them allow supports on top and put them in the Walls and Roofs group. if (identifier == "XXBBCL01" || identifier == "XXBBMD01" || - identifier == "XXBBBR01" || identifier == "ARBASE2 ") { SetPrimarySceneryGroup(&scgWalls); @@ -169,16 +168,6 @@ void SmallSceneryObject::PerformFixes() _legacyType.small_scenery.flags |= SMALL_SCENERY_FLAG_BUILD_DIRECTLY_ONTOP; } - // ToonTowner's regular roofs. Put them in the Walls and Roofs group. - if (identifier == "TTRFTL02" || - identifier == "TTRFTL03" || - identifier == "TTRFTL04" || - identifier == "TTRFTL07" || - identifier == "TTRFTL08") - { - SetPrimarySceneryGroup(&scgWalls); - } - // ToonTowner's Pirate roofs. Make them show up in the Pirate Theming. if (identifier == "TTPIRF02" || identifier == "TTPIRF03" ||