diff options
Diffstat (limited to 'src/resources/map')
-rw-r--r-- | src/resources/map/map.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/resources/map/map.cpp b/src/resources/map/map.cpp index 56483486f..6e93c82c5 100644 --- a/src/resources/map/map.cpp +++ b/src/resources/map/map.cpp @@ -1109,10 +1109,12 @@ void Map::initializeParticleEffects() const restrict2 i != mParticleEffects.end(); ++i) { + // +++ add z for map particle effects? Particle *const p = particleEngine->addEffect( i->file, i->x, - i->y); + i->y, + 0); if ((p != nullptr) && i->w > 0 && i->h > 0) |