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 3ab0dc600..d80a8a0fc 100644
--- a/src/net/tmwa/serverfeatures.cpp
+++ b/src/net/tmwa/serverfeatures.cpp
@@ -149,4 +149,9 @@ bool ServerFeatures::haveMonsterName() const
return false;
}
+bool ServerFeatures::haveBankApi() const
+{
+ return false;
+}
+
} // namespace TmwAthena
diff --git a/src/net/tmwa/serverfeatures.h b/src/net/tmwa/serverfeatures.h
index 0194173b7..be3409d21 100644
--- a/src/net/tmwa/serverfeatures.h
+++ b/src/net/tmwa/serverfeatures.h
@@ -79,6 +79,8 @@ class ServerFeatures final : public Net::ServerFeatures
bool haveEightDirections() const override final;
bool haveCharRename() const override final;
+
+ bool haveBankApi() const override final;
};
} // namespace TmwAthena