summaryrefslogtreecommitdiff
path: root/src/net/tmwa
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/tmwa')
-rw-r--r--src/net/tmwa/serverfeatures.cpp5
-rw-r--r--src/net/tmwa/serverfeatures.h2
2 files changed, 7 insertions, 0 deletions
diff --git a/src/net/tmwa/serverfeatures.cpp b/src/net/tmwa/serverfeatures.cpp
index a31fa40b7..5cfb08dbd 100644
--- a/src/net/tmwa/serverfeatures.cpp
+++ b/src/net/tmwa/serverfeatures.cpp
@@ -259,4 +259,9 @@ bool ServerFeatures::haveSlide() const
return false;
}
+bool ServerFeatures::haveExtendedDropsPosition() const
+{
+ return false;
+}
+
} // namespace TmwAthena
diff --git a/src/net/tmwa/serverfeatures.h b/src/net/tmwa/serverfeatures.h
index 2ba4dfe65..34ae2873f 100644
--- a/src/net/tmwa/serverfeatures.h
+++ b/src/net/tmwa/serverfeatures.h
@@ -123,6 +123,8 @@ class ServerFeatures final : public Net::ServerFeatures
bool haveAdvancedBuySell() const override final A_CONST;
bool haveSlide() const override final A_CONST;
+
+ bool haveExtendedDropsPosition() const override final A_CONST;
};
} // namespace TmwAthena