summaryrefslogtreecommitdiff
path: root/src/map/party.c
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-05-08 16:19:02 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-05-08 16:19:02 +0000
commit3f355729f457c4138f78a71c5019a208f2597e3c (patch)
tree1390d2d77bccad133324ad9b33d3fb4e5e61633c /src/map/party.c
parent0cd2095db1f8373b8b1b253ef850c2a4059316d0 (diff)
downloadhercules-3f355729f457c4138f78a71c5019a208f2597e3c.tar.gz
hercules-3f355729f457c4138f78a71c5019a208f2597e3c.tar.bz2
hercules-3f355729f457c4138f78a71c5019a208f2597e3c.tar.xz
hercules-3f355729f457c4138f78a71c5019a208f2597e3c.zip
- Fixed compilation error.
- idletime will now be updated on attack-request, not on sit/standup - Party members sitting will no longer be considered idle. - hide_gvg_damage will now send 1 instead of -1 as damage. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6517 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 0ece5b09e..601c49c18 100644
--- a/src/map/party.c
+++ b/src/map/party.c
@@ -664,7 +664,7 @@ int party_exp_share(struct party *p,int map,unsigned int base_exp,unsigned int j
for (i = c = 0; i < MAX_PARTY; i++)
if ((sd[c] = p->member[i].sd)!=NULL && sd[c]->bl.m == map && !pc_isdead(sd[c])) {
- if (battle_config.idle_no_share && (pc_issit(sd[c]) || sd[c]->chatID || (sd[c]->idletime < (last_tick - battle_config.idle_no_share))))
+ if (battle_config.idle_no_share && (sd[c]->chatID || (sd[c]->idletime < (last_tick - battle_config.idle_no_share))))
continue;
c++;
}