Fix potential issue with reloading configs

This commit is contained in:
Nick Ignoffo 2015-10-17 19:11:26 -07:00
parent 6b15fb823f
commit 3b1d3e968d

View file

@ -365,6 +365,11 @@ public class BloodMagicConfiguration
}
private static void buildTeleposerBlacklist() {
// Make sure it's empty before setting the blacklist.
// Otherwise, reloading the config while in-game will duplicate the list.
AlchemicalWizardryEventHooks.teleposerBlacklist.clear();
for (String blockSet : BloodMagicConfiguration.teleposerBlacklist) {
String[] blockData = blockSet.split(":");