summaryrefslogtreecommitdiff
path: root/src/net/eathena/packetsin.inc
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-04-14 17:44:24 +0300
committerAndrei Karas <akaras@inbox.ru>2016-04-14 17:44:24 +0300
commit1a7dbe5947e107a8041056d36203c3d748302e82 (patch)
treebca6f3d3bc571ba0ed445f101a120c87ea0cb504 /src/net/eathena/packetsin.inc
parenta31b61144f7420aa7e448b72d7b45a6e6c246255 (diff)
downloadplus-1a7dbe5947e107a8041056d36203c3d748302e82.tar.gz
plus-1a7dbe5947e107a8041056d36203c3d748302e82.tar.bz2
plus-1a7dbe5947e107a8041056d36203c3d748302e82.tar.xz
plus-1a7dbe5947e107a8041056d36203c3d748302e82.zip
Move function PlayerRecv::processPlayerClientCommand into ea namespace.
Diffstat (limited to 'src/net/eathena/packetsin.inc')
-rw-r--r--src/net/eathena/packetsin.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/eathena/packetsin.inc b/src/net/eathena/packetsin.inc
index b1691a82e..bba0e64e7 100644
--- a/src/net/eathena/packetsin.inc
+++ b/src/net/eathena/packetsin.inc
@@ -792,7 +792,7 @@ if (serverVersion > 0)
packet(SMSG_BEING_ATTRS, 0x0b0a, -1, &BeingRecv::processBeingAttrs, 0);
packet(SMSG_NPC_AREA, 0x0b0b, -1, &NpcRecv::processArea, 0);
packet(SMSG_ONLINE_LIST, 0x0b10, -1, &PlayerRecv::processOnlineList, 0);
- packet(SMSG_PLAYER_CLIENT_COMMAND, 0x0b16, -1, &PlayerRecv::processPlayerClientCommand, 0);
+ packet(SMSG_PLAYER_CLIENT_COMMAND, 0x0b16, -1, &Ea::PlayerRecv::processPlayerClientCommand, 0);
packet(SMSG_BEING_CHANGE_LOOKS_CARDS, 0x0b17, 19, &BeingRecv::processBeingChangeLookCards, 0);
packet(SMSG_ITEM_VISIBLE2, 0x0b18, 28, &ItemRecv::processItemVisible2, 0);
packet(SMSG_ITEM_DROPPED2, 0x0b19, 28, &ItemRecv::processItemDropped2, 0);