diff options
-rw-r--r-- | src/common/HPM.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/common/HPM.c b/src/common/HPM.c index 014c947b6..a579a0926 100644 --- a/src/common/HPM.c +++ b/src/common/HPM.c @@ -30,6 +30,7 @@ #include "common/memmgr.h" #include "common/mapindex.h" #include "common/mmo.h" +#include "common/packets.h" #include "common/showmsg.h" #include "common/socket.h" #include "common/sql.h" @@ -186,6 +187,10 @@ static bool hplugins_addpacket(unsigned short cmd, unsigned short length, void ( packet->len = length; packet->receive = receive; + if (cmd <= MAX_PACKET_DB && cmd >= MIN_PACKET_DB) { + packets->db[cmd] = length; + } + return true; } |