1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-23 15:52:55 +01:00

Use correct function call.

SMALL_SCENERY_FLAG_ANIMATED is for SmallScenery not for SmallSceneryElements
This commit is contained in:
duncanspumpkin
2019-02-26 10:02:51 +00:00
parent 83f7547bf2
commit 47b0c779de

View File

@@ -463,7 +463,7 @@ void SmallSceneryElement::SetAge(uint8_t newAge)
void SmallSceneryElement::IncreaseAge(int32_t x, int32_t y)
{
if (flags & SMALL_SCENERY_FLAG_ANIMATED)
if (IsGhost())
return;
if (age < 255)