Fix potential issue with reloading configs
This commit is contained in:
parent
6b15fb823f
commit
3b1d3e968d
|
@ -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(":");
|
||||
|
||||
|
|
Loading…
Reference in a new issue