From 9e9628afca006e549f9af6baf0fe6e8bb471f006 Mon Sep 17 00:00:00 2001 From: skotlex Date: Sun, 11 Mar 2007 17:53:22 +0000 Subject: [PATCH] - Added resetting the total count of labels to 0 when unloading an npc clears the labels. git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@9988 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/npc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/map/npc.c b/src/map/npc.c index 70fac3c5cd..3e8e519421 100644 --- a/src/map/npc.c +++ b/src/map/npc.c @@ -1567,6 +1567,7 @@ int npc_unload(struct npc_data *nd) if (nd->u.scr.label_list) { aFree(nd->u.scr.label_list); nd->u.scr.label_list = NULL; + nd->u.scr.label_list_num = 0; } } }