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 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 |