diff options
author | Matheus Macabu <mkbu95@gmail.com> | 2013-06-14 00:47:28 -0300 |
---|---|---|
committer | Euphy <euphy@rathena.org> | 2013-06-15 15:54:13 -0400 |
commit | a17364781cbd0cd10389c39582333383d38b8613 (patch) | |
tree | 306b63d546aeaf14b49d9fcddb343c0e2cf2a5da | |
parent | b4f450a2d213bab38b0d45e92ab5133a632f2c65 (diff) | |
download | hercules-a17364781cbd0cd10389c39582333383d38b8613.tar.gz hercules-a17364781cbd0cd10389c39582333383d38b8613.tar.bz2 hercules-a17364781cbd0cd10389c39582333383d38b8613.tar.xz hercules-a17364781cbd0cd10389c39582333383d38b8613.zip |
Attempt to fix #7340.
or —Oh the inconsistency between clients—.
If it doesn't help and you are having problems with party booking search, keep reporting and giving thorough information, so we can actually help.
Signed-off-by: Matheus Macabu <mkbu95@gmail.com>
-rw-r--r-- | src/config/const.h | 2 | ||||
-rw-r--r-- | src/map/packets.h | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/src/config/const.h b/src/config/const.h index 7acdea688..06a54a76f 100644 --- a/src/config/const.h +++ b/src/config/const.h @@ -93,9 +93,11 @@ #define MAX_CARTS 5 #endif /* Client Supports Party Recruit or Party Booking? */ +#ifdef PACKETVER_RE #if (PACKETVER == 20120410) || (PACKETVER == 20120418) #define PARTY_RECRUIT #endif +#endif // Renewal variable cast time reduction #ifdef RENEWAL_CAST #define VARCAST_REDUCTION(val){ \ diff --git a/src/map/packets.h b/src/map/packets.h index bcce36040..aada5d53f 100644 --- a/src/map/packets.h +++ b/src/map/packets.h @@ -2019,6 +2019,12 @@ packet(0x020d,-1); packet(0x0916,26,clif->pGuildInvite2,2); #endif +#ifndef PACKETVER_RE +#if PACKETVER >= 20120604 + packet(0x0861,18,clif->pPartyBookingRegisterReq,2,4,6); +#endif +#endif + //2012-06-18aRagexeRE #if PACKETVER >= 20120618 packet(0x0983,29); |