diff options
Diffstat (limited to 'src/map/script.c')
-rw-r--r-- | src/map/script.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/map/script.c b/src/map/script.c index 21fe6dab5..c442f210f 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -3343,6 +3343,7 @@ int buildin_heal(struct script_state *st) */ int buildin_itemheal(struct script_state *st) { + struct map_session_data *sd; int hp,sp; hp=conv_num(st,& (st->stack->stack_data[st->start+2])); @@ -3353,8 +3354,10 @@ int buildin_itemheal(struct script_state *st) potion_sp = sp; return 0; } - - pc_itemheal(script_rid2sd(st),hp,sp); + + sd = script_rid2sd(st); + if (!sd) return 0; + pc_itemheal(sd,sd->itemid,hp,sp); return 0; } /*========================================== |