diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-01-13 19:22:45 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-01-13 19:22:45 +0300 |
commit | 49081f4f7ab08849739330d47a1ef8ba3a9837a3 (patch) | |
tree | e4b900c4f61f6cd34cfe07ef7c528451a18d3c0f /src/map/npc.c | |
parent | 54e5c090692a06a96b2525f1a23f669e3449ba1b (diff) | |
parent | 99f707e6a17eb68057b0d711e7fe785c09135e21 (diff) | |
download | hercules-49081f4f7ab08849739330d47a1ef8ba3a9837a3.tar.gz hercules-49081f4f7ab08849739330d47a1ef8ba3a9837a3.tar.bz2 hercules-49081f4f7ab08849739330d47a1ef8ba3a9837a3.tar.xz hercules-49081f4f7ab08849739330d47a1ef8ba3a9837a3.zip |
Merge pull request #1088 from HerculesWS/constdb
Constdb revamp
Diffstat (limited to 'src/map/npc.c')
-rw-r--r-- | src/map/npc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/npc.c b/src/map/npc.c index 411e52c29..acecff6d0 100644 --- a/src/map/npc.c +++ b/src/map/npc.c @@ -2551,7 +2551,7 @@ void npc_parsename(struct npc_data* nd, const char* name, const char* start, con // Support for using Constants in place of NPC View IDs. int npc_parseview(const char* w4, const char* start, const char* buffer, const char* filepath) { int val = FAKE_NPC, i = 0; - char viewid[1024]; // Max size of name from const.txt, see script->read_constdb. + char viewid[1024]; // Max size of name from constants.conf, see script->read_constdb. // Extract view ID / constant while (w4[i] != '\0') { |