Make overloads consistent for defineListAllowEmpty in ForgeConfigSpec.Builder (#9604)
This commit is contained in:
parent
e6da5218b5
commit
53b67cc1b3
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
||||
|
|
Loading…
Reference in a new issue