diff options
author | glighta <glighta@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-11-14 02:26:00 +0000 |
---|---|---|
committer | glighta <glighta@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-11-14 02:26:00 +0000 |
commit | 4e406f3ed6e6f8b2b8434a366a5e54c8f7186f45 (patch) | |
tree | ae5f4769d161f5693f94e95b1623909a3d75eaf9 /src/map/party.c | |
parent | dc88ae10c96b5d5d9d40fccbb102f1ec80058063 (diff) | |
download | hercules-4e406f3ed6e6f8b2b8434a366a5e54c8f7186f45.tar.gz hercules-4e406f3ed6e6f8b2b8434a366a5e54c8f7186f45.tar.bz2 hercules-4e406f3ed6e6f8b2b8434a366a5e54c8f7186f45.tar.xz hercules-4e406f3ed6e6f8b2b8434a366a5e54c8f7186f45.zip |
Following r16914
-fix @zeny for negative amout bugreport:6886, bugreport:6895 bugreport:6888
-fix @cash,@points command display result
-enforce bound chk for both
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16924 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/party.c')
-rw-r--r-- | src/map/party.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/party.c b/src/map/party.c index dfcae5421..f7a2ebc6a 100644 --- a/src/map/party.c +++ b/src/map/party.c @@ -949,7 +949,7 @@ int party_exp_share(struct party_data* p, struct block_list* src, unsigned int b pc_gainexp(sd[i], src, base_exp, job_exp, false); if (zeny) // zeny from mobs [Valaris] - pc_getzeny(sd[i],zeny,LOG_TYPE_OTHER,NULL); + pc_getzeny(sd[i],zeny,LOG_TYPE_PICKDROP_MONSTER,NULL); } return 0; } |