summaryrefslogtreecommitdiff
path: root/src/map/npc.c
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-11-16 23:42:10 +0300
committerAndrei Karas <akaras@inbox.ru>2014-11-27 11:23:04 +0300
commit489c589e3e0f9344ee2af40c04bbdcca30ab7696 (patch)
tree0c9be54409a3718b5122c692ce9b95dc47469482 /src/map/npc.c
parent6c7a70a59ef7b074730e68f1c25fb89f1ee74a77 (diff)
downloadhercules-489c589e3e0f9344ee2af40c04bbdcca30ab7696.tar.gz
hercules-489c589e3e0f9344ee2af40c04bbdcca30ab7696.tar.bz2
hercules-489c589e3e0f9344ee2af40c04bbdcca30ab7696.tar.xz
hercules-489c589e3e0f9344ee2af40c04bbdcca30ab7696.zip
Fix npc->parse_unknown_object usage.
Diffstat (limited to 'src/map/npc.c')
-rw-r--r--src/map/npc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/npc.c b/src/map/npc.c
index 3c3c5f605..869a33509 100644
--- a/src/map/npc.c
+++ b/src/map/npc.c
@@ -4223,7 +4223,7 @@ int npc_parsesrcfile(const char* filepath, bool runOnInit) {
}
else
{
- p = npc_parse_unknown_object(w1, w2, w3, w4, p, buffer, filepath, &success);
+ p = npc->parse_unknown_object(w1, w2, w3, w4, p, buffer, filepath, &success);
}
}
aFree(buffer);