cache: add getter for npcs list

This commit is contained in:
BenjaminFaal
2017-08-19 11:20:30 -04:00
committed by Adam
parent 9895bcbba5
commit 07c8442f22
@@ -61,6 +61,11 @@ public class NpcManager
npcs.add(npc);
}
}
public List<NpcDefinition> getNpcs()
{
return npcs;
}
public void dump(File out) throws IOException
{