mirror of
https://github.com/OpenRCT2/OpenRCT2.git
synced 2025-01-22 10:21:57 -05:00
Fix: “Remove litter” cheat does not empty litter bins
This commit is contained in:
parent
2954b0a30d
commit
f127a2c8bc
2 changed files with 2 additions and 1 deletions
|
@ -3,6 +3,7 @@
|
|||
- Fix: [#16974] Small scenery ghosts can be deleted.
|
||||
- Fix: [#17005] Unable to set patrol area for first staff member in park.
|
||||
- Fix: [#17073] Corrupt ride window and random crashes when trains have more than 144 cars.
|
||||
- Fix: [#17080] “Remove litter” cheat does not empty litter bins.
|
||||
- Improved: [#17050] Transparency can be enabled directly without needing see-through enabled first.
|
||||
- Removed: [#16864] Title sequence editor (replaced by plug-in).
|
||||
|
||||
|
|
|
@ -426,7 +426,7 @@ void SetCheatAction::RemoveLitter() const
|
|||
continue;
|
||||
|
||||
auto* path = it.element->AsPath();
|
||||
if (path->HasAddition())
|
||||
if (!path->HasAddition())
|
||||
continue;
|
||||
|
||||
auto* pathBitEntry = path->GetAdditionEntry();
|
||||
|
|
Loading…
Reference in a new issue