From f4ad75753849f53831ae167d62d58398e3d0befa Mon Sep 17 00:00:00 2001 From: Lemongrass3110 Date: Sat, 27 Dec 2014 13:57:48 +0100 Subject: [PATCH 1/2] Removed a redundant call to clif_party_info on party loading. --- src/map/party.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/map/party.c b/src/map/party.c index 9ff31fec0c..dae282fad5 100644 --- a/src/map/party.c +++ b/src/map/party.c @@ -319,7 +319,8 @@ int party_recv_info(struct party* sp, uint32 char_id) clif_charnameupdate(sd); //Update other people's display. [Skotlex] clif_party_member_info(p,sd); - clif_party_option(p,sd,0x100); + // Will be sent by party_send_movemap [Lemongrass] + //clif_party_option(p,sd,0x100); clif_party_info(p,NULL); if( p->instance_id != 0 ) From 08941b2a80abd61e58eaddf419c84398aeaa20a8 Mon Sep 17 00:00:00 2001 From: Lemongrass3110 Date: Tue, 30 Dec 2014 23:37:05 +0100 Subject: [PATCH 2/2] Fixed party creation. Thanks @lighta --- src/map/party.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/map/party.c b/src/map/party.c index dae282fad5..6f48ee4fa1 100644 --- a/src/map/party.c +++ b/src/map/party.c @@ -319,8 +319,10 @@ int party_recv_info(struct party* sp, uint32 char_id) clif_charnameupdate(sd); //Update other people's display. [Skotlex] clif_party_member_info(p,sd); - // Will be sent by party_send_movemap [Lemongrass] - //clif_party_option(p,sd,0x100); + // Only send this on party creation, otherwise it will be sent by party_send_movemap [Lemongrass] + if( sd->party_creating ){ + clif_party_option(p,sd,0x100); + } clif_party_info(p,NULL); if( p->instance_id != 0 )