use of delta.games.lotro.lore.warbands.io.xml.WarbandsRegistryXMLWriter in project lotro-tools by dmorcellet.
the class WarbandsGenerator method doIt.
private void doIt() {
LotroCoreConfig cfg = LotroCoreConfig.getInstance();
File loreDir = cfg.getLoreDir();
File warbandsFile = new File(loreDir, "warbands.xml");
WarbandsRegistry r = buildRegistry();
WarbandsRegistryXMLWriter w = new WarbandsRegistryXMLWriter();
w.write(warbandsFile, r, EncodingNames.UTF_8);
}
Aggregations