summaryrefslogtreecommitdiff
path: root/src/map/party.c
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-05-15 14:15:04 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-05-15 14:15:04 +0000
commit422a0536cfc1074f534cf31885b18807cdff6d80 (patch)
tree742a66a28cd4ea0b038dd09923bb15f458d35dfc /src/map/party.c
parent1a8c1081563174cdea5630ad5bc992405cd86e7d (diff)
downloadhercules-422a0536cfc1074f534cf31885b18807cdff6d80.tar.gz
hercules-422a0536cfc1074f534cf31885b18807cdff6d80.tar.bz2
hercules-422a0536cfc1074f534cf31885b18807cdff6d80.tar.xz
hercules-422a0536cfc1074f534cf31885b18807cdff6d80.zip
- Added SC_BLADESTOP to the switch listing in status_change_start
- Characters in vending are now always considered "idle" if the idle_no_share setting is active. - Corrected 10 Geminis spawning in Lhz1 rather than 2. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6595 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 8ee9f715d..7c72d23ad 100644
--- a/src/map/party.c
+++ b/src/map/party.c
@@ -669,7 +669,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 && (sd[c]->chatID || (sd[c]->idletime < (last_tick - battle_config.idle_no_share))))
+ if (battle_config.idle_no_share && (sd[c]->chatID || sd[c]->vender_id || (sd[c]->idletime < (last_tick - battle_config.idle_no_share))))
continue;
c++;
}