summaryrefslogtreecommitdiff
path: root/src/net/tmwa
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-03-03 14:57:02 +0300
committerAndrei Karas <akaras@inbox.ru>2016-03-03 14:57:02 +0300
commit87c8c8423193109175cf8234160cd51ac561eb94 (patch)
tree9aaea2a2eedbad41d422ba6d3e7036af26784675 /src/net/tmwa
parent238da37720dbb56a7a8c3c7f30acd8c9fbab65b2 (diff)
downloadManaVerse-87c8c8423193109175cf8234160cd51ac561eb94.tar.gz
ManaVerse-87c8c8423193109175cf8234160cd51ac561eb94.tar.bz2
ManaVerse-87c8c8423193109175cf8234160cd51ac561eb94.tar.xz
ManaVerse-87c8c8423193109175cf8234160cd51ac561eb94.zip
Add server feature secure trades.
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 5cfb08dbd..802427315 100644
--- a/src/net/tmwa/serverfeatures.cpp
+++ b/src/net/tmwa/serverfeatures.cpp
@@ -264,4 +264,9 @@ bool ServerFeatures::haveExtendedDropsPosition() const
return false;
}
+bool ServerFeatures::haveSecureTrades() const
+{
+ return false;
+}
+
} // namespace TmwAthena
diff --git a/src/net/tmwa/serverfeatures.h b/src/net/tmwa/serverfeatures.h
index 34ae2873f..76ecb6b0c 100644
--- a/src/net/tmwa/serverfeatures.h
+++ b/src/net/tmwa/serverfeatures.h
@@ -125,6 +125,8 @@ class ServerFeatures final : public Net::ServerFeatures
bool haveSlide() const override final A_CONST;
bool haveExtendedDropsPosition() const override final A_CONST;
+
+ bool haveSecureTrades() const override final A_CONST;
};
} // namespace TmwAthena