diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-04-27 20:51:24 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-04-27 20:51:24 +0300 |
commit | 9d583528aefbbdcfac9e6027aa162153cd5b6a05 (patch) | |
tree | c101c780a33e047a88bdb7f3c03b631d79642f9b | |
parent | c52b454986d87db85f6740b6a94b025494d1fc23 (diff) | |
download | plus-9d583528aefbbdcfac9e6027aa162153cd5b6a05.tar.gz plus-9d583528aefbbdcfac9e6027aa162153cd5b6a05.tar.bz2 plus-9d583528aefbbdcfac9e6027aa162153cd5b6a05.tar.xz plus-9d583528aefbbdcfac9e6027aa162153cd5b6a05.zip |
Add server feature HaveKillerId.
-rw-r--r-- | src/net/eathena/serverfeatures.h | 2 | ||||
-rw-r--r-- | src/net/serverfeatures.h | 2 | ||||
-rw-r--r-- | src/net/tmwa/serverfeatures.h | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/src/net/eathena/serverfeatures.h b/src/net/eathena/serverfeatures.h index 3206f1adf..de918f2ef 100644 --- a/src/net/eathena/serverfeatures.h +++ b/src/net/eathena/serverfeatures.h @@ -137,6 +137,8 @@ class ServerFeatures final : public Net::ServerFeatures bool haveFamily() const override final; bool haveMoveWhileSit() const override final; + + bool haveKillerId() const override final; }; } // namespace EAthena diff --git a/src/net/serverfeatures.h b/src/net/serverfeatures.h index eead64f72..b3976984e 100644 --- a/src/net/serverfeatures.h +++ b/src/net/serverfeatures.h @@ -134,6 +134,8 @@ class ServerFeatures notfinal virtual bool haveFamily() const = 0; virtual bool haveMoveWhileSit() const = 0; + + virtual bool haveKillerId() const = 0; }; } // namespace Net diff --git a/src/net/tmwa/serverfeatures.h b/src/net/tmwa/serverfeatures.h index 747b1ab93..4f5fb5a14 100644 --- a/src/net/tmwa/serverfeatures.h +++ b/src/net/tmwa/serverfeatures.h @@ -137,6 +137,8 @@ class ServerFeatures final : public Net::ServerFeatures bool haveFamily() const override final A_CONST; bool haveMoveWhileSit() const override final A_CONST; + + bool haveKillerId() const override final A_CONST; }; } // namespace TmwAthena |