diff options
Diffstat (limited to 'src/map/script.c')
-rw-r--r-- | src/map/script.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/map/script.c b/src/map/script.c index 1d725335f..89cd5d8de 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -6082,7 +6082,7 @@ int buildin_sc_start(struct script_state *st) val4 = 1; //Mark that this was a thrown sc_effect
}
if (bl)
- status_change_start(bl,type,100,val1,0,0,val4,tick,0);
+ sc_start4(bl,type,100,val1,0,0,val4,tick);
return 0;
}
@@ -6110,7 +6110,7 @@ int buildin_sc_start2(struct script_state *st) }
if(bl)
- status_change_start(bl,type,per/100,val1,0,0,val4,tick,0);
+ status_change_start(bl,type,per,val1,0,0,val4,tick,0);
return 0;
}
@@ -6140,7 +6140,7 @@ int buildin_sc_start4(struct script_state *st) tick/=2;
}
if (bl)
- status_change_start(bl,type,100,val1,val2,val3,val4,tick,0);
+ sc_start4(bl,type,100,val1,val2,val3,val4,tick);
return 0;
}
|