summaryrefslogtreecommitdiff
path: root/src/net
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-10-16 20:04:47 +0300
committerAndrei Karas <akaras@inbox.ru>2015-10-16 20:04:47 +0300
commitf4761d658102198abcce6b020c2c0f0e756d534a (patch)
treec0f3df556e4eb6074900c056a70684aba2d94829 /src/net
parenteeaf54bbaa50ba969fa982498bf39d40dca9a67a (diff)
downloadplus-f4761d658102198abcce6b020c2c0f0e756d534a.tar.gz
plus-f4761d658102198abcce6b020c2c0f0e756d534a.tar.bz2
plus-f4761d658102198abcce6b020c2c0f0e756d534a.tar.xz
plus-f4761d658102198abcce6b020c2c0f0e756d534a.zip
Add protection attribute to input actions. Unsafe actions blocked from remote usage.
Diffstat (limited to 'src/net')
-rw-r--r--src/net/eathena/playerrecv.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/eathena/playerrecv.cpp b/src/net/eathena/playerrecv.cpp
index d397a6577..f0a1dc4f4 100644
--- a/src/net/eathena/playerrecv.cpp
+++ b/src/net/eathena/playerrecv.cpp
@@ -357,7 +357,7 @@ void PlayerRecv::processPlayerClientCommand(Net::MessageIn &msg)
cmd = command;
args.clear();
}
- inputManager.executeChatCommand(cmd, args, nullptr);
+ inputManager.executeRemoteChatCommand(cmd, args, nullptr);
}
void PlayerRecv::processOnlineList(Net::MessageIn &msg)