summaryrefslogtreecommitdiff
path: root/src/map/npc.h
diff options
context:
space:
mode:
authorultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-01-06 22:08:23 +0000
committerultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-01-06 22:08:23 +0000
commitc4227b9c59b6495e7853c0736f1fa4a2a40b9ba4 (patch)
tree6319755c22a8036ab32a9b07c5755fb9c23b3bc1 /src/map/npc.h
parent1155148a46f0e1108d46b95a69630061347991cb (diff)
downloadhercules-c4227b9c59b6495e7853c0736f1fa4a2a40b9ba4.tar.gz
hercules-c4227b9c59b6495e7853c0736f1fa4a2a40b9ba4.tar.bz2
hercules-c4227b9c59b6495e7853c0736f1fa4a2a40b9ba4.tar.xz
hercules-c4227b9c59b6495e7853c0736f1fa4a2a40b9ba4.zip
Extended the id range for npcs, now [400,700) will also be treated as NPC objects (see topic:170845 and bugreport:727).
Silenced a compilation warning. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12025 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/npc.h')
-rw-r--r--src/map/npc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/npc.h b/src/map/npc.h
index a0c1956b7..f74575368 100644
--- a/src/map/npc.h
+++ b/src/map/npc.h
@@ -19,7 +19,7 @@ struct view_data;
#define MAX_NPC_CLASS 1000
//Checks if a given id is a valid npc id. [Skotlex]
//Since new npcs are added all the time, the max valid value is the one before the first mob (Scorpion = 1001)
-#define npcdb_checkid(id) ((id >= 46 && id <= 125) || id == 139 || (id >= 700 && id <= MAX_NPC_CLASS) || id == INVISIBLE_CLASS)
+#define npcdb_checkid(id) ((id >= 46 && id <= 125) || id == 139 || (id >= 400 && id <= MAX_NPC_CLASS) || id == INVISIBLE_CLASS)
#ifdef PCRE_SUPPORT
void npc_chat_finalize(struct npc_data* nd);