/**
* builds the spell tables
*/
private void buildSpellTables() {
try {
final SpellGroupsXMLLoader loader = new SpellGroupsXMLLoader(new URI("/data/conf/spells.xml"));
List<DefaultSpell> loadedDefaultSpells = loader.load();
for (DefaultSpell defaultSpell : loadedDefaultSpells) {
addSpell(defaultSpell);
}
} catch (Exception e) {
LOGGER.error("spells.xml could not be loaded", e);