summaryrefslogtreecommitdiff
path: root/src/map/pc.c
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-07-08 18:24:39 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-07-08 18:24:39 +0000
commit1324165fd673fc2431a50e0dbe530cce352eb70d (patch)
tree35ba19b7aec86c9e69cb3943b0ba87e49ec34a23 /src/map/pc.c
parent2c9c73b3121b9bba577c053ebbf8783e69b73f59 (diff)
downloadhercules-1324165fd673fc2431a50e0dbe530cce352eb70d.tar.gz
hercules-1324165fd673fc2431a50e0dbe530cce352eb70d.tar.bz2
hercules-1324165fd673fc2431a50e0dbe530cce352eb70d.tar.xz
hercules-1324165fd673fc2431a50e0dbe530cce352eb70d.zip
- Fixed the new addeff structure not working well with SC_STONE (because SC_STONE is 0, which was by default not handled as a valid value).
- Added back the TF_MISS walking speed bonus to assassin type classes (how did that got lost?) git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7583 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.c')
-rw-r--r--src/map/pc.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/map/pc.c b/src/map/pc.c
index 4604ef41c..3fcb2ee41 100644
--- a/src/map/pc.c
+++ b/src/map/pc.c
@@ -1173,12 +1173,11 @@ static int pc_bonus_autospell(struct s_autospell *spell, int max, short id, shor
static int pc_bonus_addeff(struct s_addeffect *effect, int max, short id, short rate, short arrow_rate, unsigned char flag) {
int i;
-
- for (i = 0; i < max && effect[i].id; i++) {
+ for (i = 0; i < max && effect[i].flag; i++) {
if (effect[i].id == id && effect[i].flag == flag)
{
effect[i].rate += rate;
- effect[i].arrow_rate += rate;
+ effect[i].arrow_rate += arrow_rate;
return 1;
}
}