summaryrefslogtreecommitdiff
path: root/src/effectmanager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/effectmanager.cpp')
-rw-r--r--src/effectmanager.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/effectmanager.cpp b/src/effectmanager.cpp
index 79886293f..3f87bfece 100644
--- a/src/effectmanager.cpp
+++ b/src/effectmanager.cpp
@@ -137,7 +137,7 @@ bool EffectManager::trigger(const int id,
being->controlAutoParticle(selfFX);
}
if (!effect.sfx.empty())
- soundManager.playSfx(effect.sfx);
+ soundManager.playSfx(effect.sfx, 0, 0);
if (!effect.sprite.empty())
being->addEffect(effect.sprite);
return rValue;
@@ -168,7 +168,7 @@ Particle *EffectManager::triggerReturn(const int id,
being->controlCustomParticle(rValue);
}
if (!effect.sfx.empty())
- soundManager.playSfx(effect.sfx);
+ soundManager.playSfx(effect.sfx, 0, 0);
if (!effect.sprite.empty())
being->addEffect(effect.sprite);
return rValue;
@@ -203,7 +203,7 @@ bool EffectManager::trigger(const int id,
mTimers.push_back(ParticleTimer(particle, endTime));
}
if (!effect.sfx.empty())
- soundManager.playSfx(effect.sfx);
+ soundManager.playSfx(effect.sfx, 0, 0);
return rValue;
}
}