summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changelog.txt1
-rw-r--r--src/map/party.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/Changelog.txt b/Changelog.txt
index f62220b25..f7753bf62 100644
--- a/Changelog.txt
+++ b/Changelog.txt
@@ -1,5 +1,6 @@
Date Added
12/6
+ * fixed a server crash in party sharing exp [MouseJstr]
* fixed a server crash in BS_FINDINGORE [MouseJstr]
* Updated Chase Walk [celest]
* Added 'checkoption1' and 'checkoption2' script functions - Refer to
diff --git a/src/map/party.c b/src/map/party.c
index d2f169565..1e5a3dbd1 100644
--- a/src/map/party.c
+++ b/src/map/party.c
@@ -589,7 +589,7 @@ int party_exp_share(struct party *p,int map,int base_exp,int job_exp,int zeny)
if(c==0)
return 0;
for(i=0;i<MAX_PARTY;i++)
- if((sd=p->member[i].sd)!=NULL && sd->bl.m==map) {
+ if((sd=p->member[i].sd)!=NULL && sd->bl.m==map && session[sd->fd] != NULL) {
#ifdef TWILIGHT
pc_gainexp(sd,base_exp,job_exp);
#else