diff options
author | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-10-06 15:36:41 +0000 |
---|---|---|
committer | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-10-06 15:36:41 +0000 |
commit | 5ab81c08011abb8af9a1001e7835c72c6de96142 (patch) | |
tree | 0bd9e9e6da30b81d4637e64b6279999bba6817af /src | |
parent | 1963ef3c77c8c2035da2e7a2310db341c4c421fc (diff) | |
download | hercules-5ab81c08011abb8af9a1001e7835c72c6de96142.tar.gz hercules-5ab81c08011abb8af9a1001e7835c72c6de96142.tar.bz2 hercules-5ab81c08011abb8af9a1001e7835c72c6de96142.tar.xz hercules-5ab81c08011abb8af9a1001e7835c72c6de96142.zip |
* Touched up the party booking patch, seems I forgot some lines in clif.c...and managed to duplicate a line in map.c.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14413 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src')
-rw-r--r-- | src/map/clif.c | 6 | ||||
-rw-r--r-- | src/map/map.c | 1 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index abac41cdb..d003a7048 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -14544,6 +14544,12 @@ static int packetdb_readdb(void) {clif_parse_BattleChat,"battlechat"}, {clif_parse_mercenary_action,"mermenu"}, {clif_parse_progressbar,"progressbar"}, +#if PACKETVER >= 20091229 + {clif_parse_PartyBookingRegisterReq,"bookingregreq"}, + {clif_parse_PartyBookingSearchReq,"bookingsearchreq"}, + {clif_parse_PartyBookingUpdateReq,"bookingupdatereq"}, + {clif_parse_PartyBookingDeleteReq,"bookingdelreq"}, +#endif {NULL,NULL} }; diff --git a/src/map/map.c b/src/map/map.c index c9f9a6294..a2ce3dcd5 100644 --- a/src/map/map.c +++ b/src/map/map.c @@ -1666,7 +1666,6 @@ int map_quit(struct map_session_data *sd) } party_booking_delete(sd, true); // Party Booking [Spiria] - party_booking_delete(sd, true); // Party Booking [Spiria] pc_makesavestatus(sd); pc_clean_skilltree(sd); chrif_save(sd,1); |