diff options
-rw-r--r-- | src/being/being.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/being/being.cpp b/src/being/being.cpp index b21384a38..686b73f54 100644 --- a/src/being/being.cpp +++ b/src/being/being.cpp @@ -4078,6 +4078,12 @@ bool Being::isSellShopEnabled() const #endif } +void Being::serverRemove() +{ + // remove some flags what can survive player remove and next visible + mTrickDead = false; +} + #ifdef EATHENA_SUPPORT void Being::removeHorse() { @@ -4149,10 +4155,4 @@ void Being::setTrickDead(const bool b) } } -void Being::serverRemove() -{ - // remove some flags what can survive player remove and next visible - mTrickDead = false; -} - #endif |