diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-10-16 20:04:47 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-10-16 20:04:47 +0300 |
commit | f4761d658102198abcce6b020c2c0f0e756d534a (patch) | |
tree | c0f3df556e4eb6074900c056a70684aba2d94829 /src/net/eathena/playerrecv.cpp | |
parent | eeaf54bbaa50ba969fa982498bf39d40dca9a67a (diff) | |
download | plus-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/eathena/playerrecv.cpp')
-rw-r--r-- | src/net/eathena/playerrecv.cpp | 2 |
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) |