diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-10-31 21:21:37 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-10-31 21:21:37 +0300 |
commit | e8f29b1cff5360c9d16587b91d72863af4763d08 (patch) | |
tree | 19f69b1cda80609c2c040e4ad6340b84dfd96b2b /src/statuseffect.h | |
parent | 2ff2ea08e8d158961d4d38c06ba93c52b919026d (diff) | |
download | plus-e8f29b1cff5360c9d16587b91d72863af4763d08.tar.gz plus-e8f29b1cff5360c9d16587b91d72863af4763d08.tar.bz2 plus-e8f29b1cff5360c9d16587b91d72863af4763d08.tar.xz plus-e8f29b1cff5360c9d16587b91d72863af4763d08.zip |
Add support for dead trick status effect (hercules)
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 98ca18802..cb9641074 100644 --- a/src/statuseffect.h +++ b/src/statuseffect.h @@ -85,6 +85,9 @@ class StatusEffect final bool isRiding() const A_WARN_UNUSED { return mIsRiding; } + bool isTrickDead() const A_WARN_UNUSED + { return mIsTrickDead; } + /** * Retrieves a status effect. * @@ -135,6 +138,7 @@ class StatusEffect final bool mIsPoison; bool mIsCart; bool mIsRiding; + bool mIsTrickDead; }; #endif // STATUSEFFECT_H |