Match formatting style

This commit is contained in:
Brett Bonifas 2022-03-09 10:24:05 -05:00
parent ad4294b8f2
commit 40dbb27c58

View File

@ -165,8 +165,7 @@ public class ConfigLoader
// Set a default list of lists of mutually exclusive enchantments // Set a default list of lists of mutually exclusive enchantments
// Default only has a list for the protection enchantments // Default only has a list for the protection enchantments
List<List<String>> defaultMutuallyExclusiveEnchantments = new ArrayList<>(); List<List<String>> defaultMutuallyExclusiveEnchantments = new ArrayList<>();
defaultMutuallyExclusiveEnchantments.add(List.of( defaultMutuallyExclusiveEnchantments.add(List.of("minecraft:protection",
"minecraft:protection",
"minecraft:projectile_protection", "minecraft:projectile_protection",
"minecraft:blast_protection", "minecraft:blast_protection",
"minecraft:fire_protection")); "minecraft:fire_protection"));