diff options
Diffstat (limited to 'src/animationparticle.cpp')
-rw-r--r-- | src/animationparticle.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/animationparticle.cpp b/src/animationparticle.cpp index fbe0e29df..b20625a42 100644 --- a/src/animationparticle.cpp +++ b/src/animationparticle.cpp @@ -33,9 +33,10 @@ AnimationParticle::AnimationParticle(Map *map, Animation *animation): { } -AnimationParticle::AnimationParticle(Map *map, xmlNodePtr animationNode): +AnimationParticle::AnimationParticle(Map *map, xmlNodePtr animationNode, + const std::string& dyePalettes): ImageParticle(map, 0), - mAnimation(new SimpleAnimation(animationNode)) + mAnimation(new SimpleAnimation(animationNode, dyePalettes)) { } |