summaryrefslogtreecommitdiff
path: root/src/map/party.c
diff options
context:
space:
mode:
authorcelest <celest@54d463be-8e91-2dee-dedb-b68131a5f0ec>2004-12-23 11:44:57 +0000
committercelest <celest@54d463be-8e91-2dee-dedb-b68131a5f0ec>2004-12-23 11:44:57 +0000
commit1b008a629ddb633d91a70e2c037924fab10e2d6c (patch)
tree9d74acfa108d52affea8481d0edc8639f4049d9f /src/map/party.c
parentae6da4b867571ac6b53198e56b11a31d037f3dd2 (diff)
downloadhercules-1b008a629ddb633d91a70e2c037924fab10e2d6c.tar.gz
hercules-1b008a629ddb633d91a70e2c037924fab10e2d6c.tar.bz2
hercules-1b008a629ddb633d91a70e2c037924fab10e2d6c.tar.xz
hercules-1b008a629ddb633d91a70e2c037924fab10e2d6c.zip
* Updated Sacrifice
* Fixed compile errors in party.c * Moved SC_EDP back to 114 git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@750 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/party.c')
-rw-r--r--src/map/party.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/party.c b/src/map/party.c
index 9443608fb..ddaed7fc7 100644
--- a/src/map/party.c
+++ b/src/map/party.c
@@ -591,7 +591,7 @@ int party_exp_share(struct party *p,int map,int base_exp,int job_exp,int zeny)
return 0;
for(i=0;i<MAX_PARTY;i++)
if((sd=p->member[i].sd)!=NULL && sd->bl.m==map && session[sd->fd] != NULL) {
- if (/* pc_issit(sd) || */ (sd->chatID != NULL) || (sd->idletime < (time(0) - 120)))
+ if (/* pc_issit(sd) || */ sd->chatID || (sd->idletime < (time(0) - 120)))
continue;
#ifdef TWILIGHT
pc_gainexp(sd,base_exp,job_exp);