summaryrefslogtreecommitdiff
path: root/src/net
diff options
context:
space:
mode:
Diffstat (limited to 'src/net')
-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 2ee68f405..da2e9c945 100644
--- a/src/net/eathena/serverfeatures.cpp
+++ b/src/net/eathena/serverfeatures.cpp
@@ -77,4 +77,9 @@ bool ServerFeatures::haveIncompleteChatMessages() const
return false;
}
+bool ServerFeatures::haveRaceSelection() const
+{
+ return false;
+}
+
} // namespace EAthena
diff --git a/src/net/eathena/serverfeatures.h b/src/net/eathena/serverfeatures.h
index 3aa99e40d..625655b3c 100644
--- a/src/net/eathena/serverfeatures.h
+++ b/src/net/eathena/serverfeatures.h
@@ -51,6 +51,8 @@ class ServerFeatures final : public Net::ServerFeatures
bool haveNativeGuilds() const override final;
bool haveIncompleteChatMessages() const override final;
+
+ bool haveRaceSelection() const override final;
};
} // namespace EAthena
diff --git a/src/net/serverfeatures.h b/src/net/serverfeatures.h
index 8f5acb0c2..3f623f1c9 100644
--- a/src/net/serverfeatures.h
+++ b/src/net/serverfeatures.h
@@ -48,6 +48,8 @@ class ServerFeatures notfinal
virtual bool haveNativeGuilds() const = 0;
virtual bool haveIncompleteChatMessages() const = 0;
+
+ virtual bool haveRaceSelection() const = 0;
};
} // namespace Net
diff --git a/src/net/tmwa/serverfeatures.cpp b/src/net/tmwa/serverfeatures.cpp
index 31b7a16ed..330dff083 100644
--- a/src/net/tmwa/serverfeatures.cpp
+++ b/src/net/tmwa/serverfeatures.cpp
@@ -79,4 +79,9 @@ bool ServerFeatures::haveIncompleteChatMessages() const
return tmwServerVersion > 0;
}
+bool ServerFeatures::haveRaceSelection() const
+{
+ return serverVersion >= 2;
+}
+
} // namespace TmwAthena
diff --git a/src/net/tmwa/serverfeatures.h b/src/net/tmwa/serverfeatures.h
index 916fbf3db..740d73e5b 100644
--- a/src/net/tmwa/serverfeatures.h
+++ b/src/net/tmwa/serverfeatures.h
@@ -51,6 +51,8 @@ class ServerFeatures final : public Net::ServerFeatures
bool haveNativeGuilds() const override final;
bool haveIncompleteChatMessages() const override final;
+
+ bool haveRaceSelection() const override final;
};
} // namespace TmwAthena