summaryrefslogtreecommitdiff
path: root/src/net/tmwa
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-10-15 23:52:33 +0300
committerAndrei Karas <akaras@inbox.ru>2014-10-15 23:52:33 +0300
commit7246c1d726744e07d9db24ffc68f6934b6c8264f (patch)
treea6dbf6e8e889c6f5e0b0ef5cc3583955674a8ae9 /src/net/tmwa
parent31a13e296a21a7735e8d217b4d7f13fa32ee4033 (diff)
downloadplus-7246c1d726744e07d9db24ffc68f6934b6c8264f.tar.gz
plus-7246c1d726744e07d9db24ffc68f6934b6c8264f.tar.bz2
plus-7246c1d726744e07d9db24ffc68f6934b6c8264f.tar.xz
plus-7246c1d726744e07d9db24ffc68f6934b6c8264f.zip
Add in server features function haveBankApi.
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