diff options
author | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-11-28 21:06:17 +0000 |
---|---|---|
committer | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-11-28 21:06:17 +0000 |
commit | fcf5b330c38bc7a48e774163c5624428f25aead6 (patch) | |
tree | 5f0d076be684181fd06d9aacc2708d11e4f9300e /src/map/map.c | |
parent | 1bedc59cb03ac68564d55a8e4e3b184d46a7656c (diff) | |
download | hercules-fcf5b330c38bc7a48e774163c5624428f25aead6.tar.gz hercules-fcf5b330c38bc7a48e774163c5624428f25aead6.tar.bz2 hercules-fcf5b330c38bc7a48e774163c5624428f25aead6.tar.xz hercules-fcf5b330c38bc7a48e774163c5624428f25aead6.zip |
* Resolved multiple issues with the party booking system (bugreport:4573, since r14412).
- Fixed recruitments were limited to party leaders.
- Fixed recruitment index was party id instead of an auto-increment value, causing sorting by age not working.
- Fixed search result packet being sent on recruitment creation (probably to work-around next problem).
- Fixed packet 0x0805 not getting sent, because of commented entries in packet_db.txt (packet ver. restriction of clif_send).
- Fixed recruitment creation notice being sent to the recruiter only.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14516 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/map.c')
-rw-r--r-- | src/map/map.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/map.c b/src/map/map.c index 309095ff0..b7b1c09b8 100644 --- a/src/map/map.c +++ b/src/map/map.c @@ -1665,7 +1665,7 @@ int map_quit(struct map_session_data *sd) } } - party_booking_delete(sd, true); // Party Booking [Spiria] + party_booking_delete(sd); // Party Booking [Spiria] pc_makesavestatus(sd); pc_clean_skilltree(sd); chrif_save(sd,1); |