diff --git a/distribution/changelog.txt b/distribution/changelog.txt index 34567e9393..4ecbea4404 100644 --- a/distribution/changelog.txt +++ b/distribution/changelog.txt @@ -3,6 +3,7 @@ - Feature: [#15084] [Plugin] Add "vehicle.crash" hook - Fix: [#14316] Closing the Track Designs Manager window causes broken state. - Fix: [#15096] Crash when placing entrances in the scenario editor near the map corner. +- Fix: [#15142] ToonTowner's mine roofs were moved into the pirate theme scenery group instead of the mine theme scenery group. - Improved: [#3417] Crash dumps are now placed in their own folder. 0.3.4.1 (2021-07-25) diff --git a/src/openrct2/object/SmallSceneryObject.cpp b/src/openrct2/object/SmallSceneryObject.cpp index a9aa6d30fd..47c83ecf17 100644 --- a/src/openrct2/object/SmallSceneryObject.cpp +++ b/src/openrct2/object/SmallSceneryObject.cpp @@ -215,7 +215,7 @@ ObjectEntryDescriptor SmallSceneryObject::GetScgPiratHeader() const ObjectEntryDescriptor SmallSceneryObject::GetScgMineHeader() const { - return ObjectEntryDescriptor("rct2.scgpirat"); + return ObjectEntryDescriptor("rct2.scgmine"); } ObjectEntryDescriptor SmallSceneryObject::GetScgAbstrHeader() const