diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-08-07 22:58:03 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-08-10 23:06:09 +0300 |
commit | 6d55379d57a9b9dea689ddf8e711e0cdfa0c9dbe (patch) | |
tree | 0c83fad347aabdc8f122a1097f1cb25bd8a937ab /src/map/npc_chat.c | |
parent | 7614415c83f2a091302f62806e16adca1feea6bf (diff) | |
download | hercules-6d55379d57a9b9dea689ddf8e711e0cdfa0c9dbe.tar.gz hercules-6d55379d57a9b9dea689ddf8e711e0cdfa0c9dbe.tar.bz2 hercules-6d55379d57a9b9dea689ddf8e711e0cdfa0c9dbe.tar.xz hercules-6d55379d57a9b9dea689ddf8e711e0cdfa0c9dbe.zip |
Add script interface function run_npc. It do same thing as run.
Diffstat (limited to 'src/map/npc_chat.c')
-rw-r--r-- | src/map/npc_chat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/npc_chat.c b/src/map/npc_chat.c index 3fe379f36..67b78dcea 100644 --- a/src/map/npc_chat.c +++ b/src/map/npc_chat.c @@ -371,7 +371,7 @@ int npc_chat_sub(struct block_list* bl, va_list ap) } // run the npc script - script->run(nd->u.scr.script,lst[i].pos,sd->bl.id,nd->bl.id); + script->run_npc(nd->u.scr.script,lst[i].pos,sd->bl.id,nd->bl.id); return 0; } } |