diff options
Diffstat (limited to 'src/statuseffect.h')
-rw-r--r-- | src/statuseffect.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/statuseffect.h b/src/statuseffect.h index cb9641074..136e4c7fe 100644 --- a/src/statuseffect.h +++ b/src/statuseffect.h @@ -69,6 +69,9 @@ class StatusEffect final */ std::string getAction() const A_WARN_UNUSED; + std::string getName() const A_WARN_UNUSED + { return mName; } + /** * Determines whether the particle effect should be restarted when the * being changes maps @@ -134,6 +137,7 @@ class StatusEffect final std::string mParticleEffect; std::string mIcon; std::string mAction; + std::string mName; bool mPersistentParticleEffect; bool mIsPoison; bool mIsCart; |