summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-01-22 17:23:00 +0300
committerAndrei Karas <akaras@inbox.ru>2015-01-22 17:23:00 +0300
commitfc70de9b9d4ae04b1748a27474cc0e1c03e07f05 (patch)
tree3f412e7b996b93caf85bb9665f69b10b1267ba87
parent4e50d7314f67f6e6fc307a6270d2b6dab598f5ea (diff)
downloadplus-fc70de9b9d4ae04b1748a27474cc0e1c03e07f05.tar.gz
plus-fc70de9b9d4ae04b1748a27474cc0e1c03e07f05.tar.bz2
plus-fc70de9b9d4ae04b1748a27474cc0e1c03e07f05.tar.xz
plus-fc70de9b9d4ae04b1748a27474cc0e1c03e07f05.zip
Add server feature vending.
-rw-r--r--src/net/eathena/serverfeatures.cpp5
-rw-r--r--src/net/eathena/serverfeatures.h2
-rw-r--r--src/net/serverfeatures.h2
-rw-r--r--src/net/tmwa/serverfeatures.cpp5
-rw-r--r--src/net/tmwa/serverfeatures.h2
5 files changed, 16 insertions, 0 deletions
diff --git a/src/net/eathena/serverfeatures.cpp b/src/net/eathena/serverfeatures.cpp
index 4179adef3..2afce81c3 100644
--- a/src/net/eathena/serverfeatures.cpp
+++ b/src/net/eathena/serverfeatures.cpp
@@ -195,4 +195,9 @@ bool ServerFeatures::haveAttackDirections() const
return true;
}
+bool ServerFeatures::haveVending() const
+{
+ return true;
+}
+
} // namespace EAthena
diff --git a/src/net/eathena/serverfeatures.h b/src/net/eathena/serverfeatures.h
index bf7fb422e..75fbf1b8e 100644
--- a/src/net/eathena/serverfeatures.h
+++ b/src/net/eathena/serverfeatures.h
@@ -97,6 +97,8 @@ class ServerFeatures final : public Net::ServerFeatures
bool haveCreateCharGender() const override final;
bool haveAttackDirections() const override final;
+
+ bool haveVending() const override final;
};
} // namespace EAthena
diff --git a/src/net/serverfeatures.h b/src/net/serverfeatures.h
index b93914a22..bb6c3ada8 100644
--- a/src/net/serverfeatures.h
+++ b/src/net/serverfeatures.h
@@ -94,6 +94,8 @@ class ServerFeatures notfinal
virtual bool haveCreateCharGender() const = 0;
virtual bool haveAttackDirections() const = 0;
+
+ virtual bool haveVending() const = 0;
};
} // namespace Net
diff --git a/src/net/tmwa/serverfeatures.cpp b/src/net/tmwa/serverfeatures.cpp
index 5e4ea63e5..b939970ee 100644
--- a/src/net/tmwa/serverfeatures.cpp
+++ b/src/net/tmwa/serverfeatures.cpp
@@ -194,4 +194,9 @@ bool ServerFeatures::haveAttackDirections() const
return false;
}
+bool ServerFeatures::haveVending() const
+{
+ return false;
+}
+
} // namespace TmwAthena
diff --git a/src/net/tmwa/serverfeatures.h b/src/net/tmwa/serverfeatures.h
index e447197c3..391073d4a 100644
--- a/src/net/tmwa/serverfeatures.h
+++ b/src/net/tmwa/serverfeatures.h
@@ -97,6 +97,8 @@ class ServerFeatures final : public Net::ServerFeatures
bool haveCreateCharGender() const override final;
bool haveAttackDirections() const override final;
+
+ bool haveVending() const override final;
};
} // namespace TmwAthena