diff options
Diffstat (limited to 'src/statuseffect.h')
-rw-r--r-- | src/statuseffect.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/statuseffect.h b/src/statuseffect.h index 8bb164820..e30d9d1bd 100644 --- a/src/statuseffect.h +++ b/src/statuseffect.h @@ -73,6 +73,8 @@ public: bool particleEffectIsPersistent() const A_WARN_UNUSED { return mPersistentParticleEffect; } + bool isPoison() const A_WARN_UNUSED + { return mIsPoison; } /** * Retrieves a status effect. @@ -118,6 +120,7 @@ private: std::string mIcon; std::string mAction; bool mPersistentParticleEffect; + bool mIsPoison; }; #endif // STATUSEFFECT_H |