summaryrefslogtreecommitdiff
path: root/src/map/init.c
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-02-22 14:50:44 +0300
committerAndrei Karas <akaras@inbox.ru>2015-02-22 14:50:44 +0300
commit9ecd36f5dd308aac9bfd673474774bd3a727df53 (patch)
treebcfa2d7fc7075ed0763adfcc4f76802a506a223d /src/map/init.c
parent7dfeba7f6f050e3f624291a97c7a82de57c54980 (diff)
downloadevol-hercules-9ecd36f5dd308aac9bfd673474774bd3a727df53.tar.gz
evol-hercules-9ecd36f5dd308aac9bfd673474774bd3a727df53.tar.bz2
evol-hercules-9ecd36f5dd308aac9bfd673474774bd3a727df53.tar.xz
evol-hercules-9ecd36f5dd308aac9bfd673474774bd3a727df53.zip
Allow move pet by packet from client.
Diffstat (limited to 'src/map/init.c')
-rw-r--r--src/map/init.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/map/init.c b/src/map/init.c
index 3c736f9..0253ffa 100644
--- a/src/map/init.c
+++ b/src/map/init.c
@@ -111,6 +111,7 @@ HPExport void plugin_init (void)
addPacket(0xb0d, 3, map_parse_pet_emote, hpClif_Parse);
addPacket(0xb0e, 4, map_parse_set_status, hpClif_Parse);
addPacket(0xb0f, 2, map_parse_get_online_list, hpClif_Parse);
+ addPacket(0xb11, 10, map_parse_pet_move, hpClif_Parse);
addHookPre("pc->readparam", epc_readparam_pre);
addHookPre("pc->setregistry", epc_setregistry);