summaryrefslogtreecommitdiff
path: root/src/net/eathena/adminhandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/eathena/adminhandler.cpp')
-rw-r--r--src/net/eathena/adminhandler.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/net/eathena/adminhandler.cpp b/src/net/eathena/adminhandler.cpp
index 00a4fd548..ca26c7823 100644
--- a/src/net/eathena/adminhandler.cpp
+++ b/src/net/eathena/adminhandler.cpp
@@ -166,6 +166,15 @@ void AdminHandler::requestLogin(const Being *const being) const
outMsg.writeInt32(being->getId(), "account id");
}
+void AdminHandler::setTileType(const int x, const int y,
+ const int type) const
+{
+ MessageOut outMsg(CMSG_ADMIN_SET_TILE_TYPE);
+ outMsg.writeInt16(x, "x");
+ outMsg.writeInt16(y, "y");
+ outMsg.writeInt16(type, "type");
+}
+
void AdminHandler::processAdminGetLoginAck(Net::MessageIn &msg)
{
msg.readInt32("account id");