summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-11-02 15:34:56 +0300
committerAndrei Karas <akaras@inbox.ru>2015-11-02 15:34:56 +0300
commitd5bcda79fbf3d5d4d2963a84a9026fb67da12845 (patch)
treea653961922e69ef4fb548d1f886f06fb0a7686f3
parentd4e5a5064bec115a7fc204766d1bc0725b883407 (diff)
downloadplus-d5bcda79fbf3d5d4d2963a84a9026fb67da12845.tar.gz
plus-d5bcda79fbf3d5d4d2963a84a9026fb67da12845.tar.bz2
plus-d5bcda79fbf3d5d4d2963a84a9026fb67da12845.tar.xz
plus-d5bcda79fbf3d5d4d2963a84a9026fb67da12845.zip
Fix compilation with different flags.
-rw-r--r--src/being/being.cpp12
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