From 3de77401207652494f631295c3cc19fdb9be4d50 Mon Sep 17 00:00:00 2001 From: Titus Tscharntke Date: Thu, 19 Sep 2013 22:04:18 +0000 Subject: [PATCH] copy visible from current particle instead of setting it hard to true. fixes: https://forum.megaglest.org/index.php?topic=9216.0 --- source/shared_lib/sources/graphics/particle.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/shared_lib/sources/graphics/particle.cpp b/source/shared_lib/sources/graphics/particle.cpp index a6e519a5f..53934a61e 100644 --- a/source/shared_lib/sources/graphics/particle.cpp +++ b/source/shared_lib/sources/graphics/particle.cpp @@ -1544,7 +1544,7 @@ void ProjectileParticleSystem::update(){ } if(nextParticleSystem != NULL){ - nextParticleSystem->setVisible(true); + nextParticleSystem->setVisible(getVisible()); nextParticleSystem->setState(sPlay); nextParticleSystem->setPos(endPos); }