Make overloads consistent for defineListAllowEmpty in ForgeConfigSpec.Builder (#9604)

This commit is contained in:
Thomas Kain 2023-07-03 20:28:37 -04:00 committed by GitHub
parent e6da5218b5
commit 53b67cc1b3

View file

@ -35,7 +35,7 @@ public class Config
// a list of strings that are treated as resource locations for items
private static final ForgeConfigSpec.ConfigValue<List<? extends String>> ITEM_STRINGS = BUILDER
.comment("A list of items to log on common setup.")
.defineListAllowEmpty(Collections.singletonList("items"), () -> List.of("minecraft:iron_ingot"), Config::validateItemName);
.defineListAllowEmpty("items", List.of("minecraft:iron_ingot"), Config::validateItemName);
static final ForgeConfigSpec SPEC = BUILDER.build();