diff options
-rw-r--r-- | src/net/eathena/serverfeatures.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/eathena/serverfeatures.cpp b/src/net/eathena/serverfeatures.cpp index f376b88cc..2d83915d2 100644 --- a/src/net/eathena/serverfeatures.cpp +++ b/src/net/eathena/serverfeatures.cpp @@ -118,7 +118,7 @@ bool ServerFeatures::haveAccountOtherGender() const bool ServerFeatures::haveCharOtherGender() const { - return serverVersion >= 10; + return true; } bool ServerFeatures::haveMonsterAttackRange() const @@ -248,7 +248,7 @@ bool ServerFeatures::haveAdvancedBuySell() const bool ServerFeatures::haveSlide() const { - return serverVersion >= 10; + return true; } bool ServerFeatures::haveExtendedDropsPosition() const |