diff --git a/source/glest_game/type_instances/unit.cpp b/source/glest_game/type_instances/unit.cpp index 7dbac9f3..bc4f2695 100644 --- a/source/glest_game/type_instances/unit.cpp +++ b/source/glest_game/type_instances/unit.cpp @@ -323,6 +323,9 @@ void UnitAttackBoostEffect::setSource(const Unit *unit) { void UnitAttackBoostEffect::applyLoadedAttackBoostParticles(UnitParticleSystemType *upstPtr,const XmlNode *node, Unit* unit) { if (upstPtr != NULL) { bool showUnitParticles = Config::getInstance().getBool("UnitParticles","true"); + if(GlobalStaticFlags::getIsNonGraphicalModeEnabled() == true) { + showUnitParticles = false; + } if (showUnitParticles == true) { upst = new UnitParticleSystemType(); *upst = *upstPtr;