Merge pull request #473 from TehNut/patch-1

Fix potential issue with reloading configs
This commit is contained in:
WayofTime 2015-10-18 06:57:49 -04:00
commit 0764dd7be8

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(":");