diff options
-rw-r--r-- | src/resources/map/map.cpp | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/resources/map/map.cpp b/src/resources/map/map.cpp index 9e72684fe..e86c0c2a4 100644 --- a/src/resources/map/map.cpp +++ b/src/resources/map/map.cpp @@ -511,13 +511,9 @@ void Map::draw(Graphics *restrict const graphics, { if (Actor *const actor = *ai) { - // For now, just draw actors with only one layer. - if (actor->getNumberOfLayers() == 1) - { - actor->setAlpha(0.3F); - actor->draw(graphics, -scrollX, -scrollY); - actor->setAlpha(1.0F); - } + actor->setAlpha(0.3F); + actor->draw(graphics, -scrollX, -scrollY); + actor->setAlpha(1.0F); } ++ai; } |