summaryrefslogtreecommitdiff
path: root/src/map/clif.c
diff options
context:
space:
mode:
authorInkfish <Inkfish@54d463be-8e91-2dee-dedb-b68131a5f0ec>2009-08-11 06:26:27 +0000
committerInkfish <Inkfish@54d463be-8e91-2dee-dedb-b68131a5f0ec>2009-08-11 06:26:27 +0000
commitd3aeb86c334a72a762e5b0a763ef858a9756d473 (patch)
treeffe8017bfc579395c108b57288cf7c03bcc219b7 /src/map/clif.c
parent421e1cc98979edbd220c12d8911a96282b045b60 (diff)
downloadhercules-d3aeb86c334a72a762e5b0a763ef858a9756d473.tar.gz
hercules-d3aeb86c334a72a762e5b0a763ef858a9756d473.tar.bz2
hercules-d3aeb86c334a72a762e5b0a763ef858a9756d473.tar.xz
hercules-d3aeb86c334a72a762e5b0a763ef858a9756d473.zip
* Fixed autospell and autobonus will still trigger even if the chance is 0.
* Disabled "show_party_share_picker" functioning on client older than 20071002 to prevent from disconnection. (bugreport:3457) * Fixed units other than players and mercenaries using Devotion will cause crashes. (bugreport:3475) git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13999 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/clif.c')
-rw-r--r--src/map/clif.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/map/clif.c b/src/map/clif.c
index f3e2757d5..3182ca6b7 100644
--- a/src/map/clif.c
+++ b/src/map/clif.c
@@ -13141,6 +13141,7 @@ void clif_instance_leave(int fd)
void clif_party_show_picker(struct map_session_data * sd, struct item * item_data)
{
+#if PACKETVER >= 20071002
unsigned char buf[22];
WBUFW(buf,0)=0x2b8;
@@ -13158,6 +13159,7 @@ void clif_party_show_picker(struct map_session_data * sd, struct item * item_dat
//WBUFB(buf,20) = 0;
//WBUFB(buf,21) = 0;
clif_send(buf, packet_len(0x2b8), &sd->bl, PARTY_SAMEMAP_WOS);
+#endif
}
/*==========================================