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 b939970ee..5ba2b1dac 100644
--- a/src/net/tmwa/serverfeatures.cpp
+++ b/src/net/tmwa/serverfeatures.cpp
@@ -199,4 +199,9 @@ bool ServerFeatures::haveVending() const
return false;
}
+bool ServerFeatures::haveCart() const
+{
+ return false;
+}
+
} // namespace TmwAthena
diff --git a/src/net/tmwa/serverfeatures.h b/src/net/tmwa/serverfeatures.h
index 391073d4a..d29c4287b 100644
--- a/src/net/tmwa/serverfeatures.h
+++ b/src/net/tmwa/serverfeatures.h
@@ -99,6 +99,8 @@ class ServerFeatures final : public Net::ServerFeatures
bool haveAttackDirections() const override final;
bool haveVending() const override final;
+
+ bool haveCart() const override final;
};
} // namespace TmwAthena