diff options
author | Lance <Lance@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-04-29 19:54:40 +0000 |
---|---|---|
committer | Lance <Lance@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-04-29 19:54:40 +0000 |
commit | 571ce8ac8aed5b8373cdb722cc54589e28f4c4b1 (patch) | |
tree | da3091a775239d8804b1b796f595aae0a74e55fc /src/map | |
parent | c08b660041e4a6b2f78715c3f50e6b64619d3ccd (diff) | |
download | hercules-571ce8ac8aed5b8373cdb722cc54589e28f4c4b1.tar.gz hercules-571ce8ac8aed5b8373cdb722cc54589e28f4c4b1.tar.bz2 hercules-571ce8ac8aed5b8373cdb722cc54589e28f4c4b1.tar.xz hercules-571ce8ac8aed5b8373cdb722cc54589e28f4c4b1.zip |
- Cleaned up unused variables in npc.c
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6383 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map')
-rw-r--r-- | src/map/npc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/npc.c b/src/map/npc.c index 2f4745948..f0ee22dc3 100644 --- a/src/map/npc.c +++ b/src/map/npc.c @@ -50,7 +50,7 @@ static int npc_mob=0; static int npc_delay_mob=0;
static int npc_cache_mob=0;
char *current_file = NULL;
-int dummy_npc_id=0;
+//int dummy_npc_id=0;
int npc_get_new_npc_id(void){ return npc_id++; }
static struct dbt *ev_db;
@@ -2793,7 +2793,7 @@ int do_init_npc(void) add_timer_func_list(npc_timerevent,"npc_timerevent");
// Init dummy NPC
- dummy_npc_id = npc_get_new_npc_id();
+ //dummy_npc_id = npc_get_new_npc_id();
return 0;
}
|