diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-07-10 22:19:49 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-07-10 22:22:53 +0300 |
commit | 4aa184df5a208c51cb0141ae6a609c60294d8323 (patch) | |
tree | 35d8be02657f234ac2803c2cd3f4c30780e237ac /src/statuseffect.h | |
parent | f9a7f96525c7485de4cf27f973f0b52f5d74f048 (diff) | |
download | plus-4aa184df5a208c51cb0141ae6a609c60294d8323.tar.gz plus-4aa184df5a208c51cb0141ae6a609c60294d8323.tar.bz2 plus-4aa184df5a208c51cb0141ae6a609c60294d8323.tar.xz plus-4aa184df5a208c51cb0141ae6a609c60294d8323.zip |
Rename StatusEffect::getParticle into StatusEffect::getStartParticle
Diffstat (limited to 'src/statuseffect.h')
-rw-r--r-- | src/statuseffect.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/statuseffect.h b/src/statuseffect.h index 1a77536a2..7ef6f212f 100644 --- a/src/statuseffect.h +++ b/src/statuseffect.h @@ -55,7 +55,7 @@ class StatusEffect final * Creates the particle effect associated with this status effect, if * possible. */ - Particle *getParticle() const A_WARN_UNUSED; + Particle *getStartParticle() const A_WARN_UNUSED; /** * Retrieves the status icon for this effect, if applicable @@ -69,7 +69,7 @@ class StatusEffect final std::string mMessage; std::string mSFXEffect; - std::string mParticleEffect; + std::string mStartParticleEffect; std::string mIcon; std::string mAction; std::string mName; |