diff options
Diffstat (limited to 'src/map/script.c')
-rw-r--r-- | src/map/script.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/script.c b/src/map/script.c index 8408e8546..cf101f156 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -11787,7 +11787,7 @@ int buildin_mobspawn(struct script_state *st){ x =conv_num(st,& (st->stack->stack_data[st->start+5])); y =conv_num(st,& (st->stack->stack_data[st->start+6])); - id = mob_once_spawn(map_id2sd(st->rid),map,x,y,str,class_,1,NULL); + id = mob_once_spawn(map_id2sd(st->rid),map,x,y,str,class_,1,""); push_val(st->stack,C_INT,id); return 0; |