diff options
Diffstat (limited to 'src/net/ea')
-rw-r--r-- | src/net/ea/adminhandler.cpp | 16 | ||||
-rw-r--r-- | src/net/ea/adminhandler.h | 3 |
2 files changed, 19 insertions, 0 deletions
diff --git a/src/net/ea/adminhandler.cpp b/src/net/ea/adminhandler.cpp index 0d2245330..9e1956edd 100644 --- a/src/net/ea/adminhandler.cpp +++ b/src/net/ea/adminhandler.cpp @@ -28,6 +28,8 @@ #include "debug.h" +extern int serverVersion; + namespace Ea { @@ -70,4 +72,18 @@ void AdminHandler::warp(const std::string &map, const int x, const int y) const "@warp %s %d %d", map.c_str(), x, y), GENERAL_CHANNEL); } +void AdminHandler::createItems(const int id, const int color, const int amount) +{ + if (serverVersion < 1) + { + Net::getChatHandler()->talk(strprintf("@item %d %d", + id, amount), GENERAL_CHANNEL); + } + else + { + Net::getChatHandler()->talk(strprintf("@item %d %d %d", + id, color, amount), GENERAL_CHANNEL); + } +} + } // namespace Ea diff --git a/src/net/ea/adminhandler.h b/src/net/ea/adminhandler.h index 7112bb75d..fb0ddfd0c 100644 --- a/src/net/ea/adminhandler.h +++ b/src/net/ea/adminhandler.h @@ -55,6 +55,9 @@ class AdminHandler : public Net::AdminHandler virtual void warp(const std::string &map, const int x, const int y) const override; + + void createItems(const int id, const int color, + const int amount); }; } // namespace Ea |