Browse Source

- Cleaned up unused variables in npc.c

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@6383 54d463be-8e91-2dee-dedb-b68131a5f0ec
Lance 19 years ago
parent
commit
8043799642
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/map/npc.c

+ 2 - 2
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;
 }