1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-20 03:35:51 +00:00

no static import

This commit is contained in:
Rothes 2021-03-28 16:55:10 +08:00 committed by GitHub
parent f01f31bfc1
commit c500b825c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -44,7 +44,7 @@ public class AutoEnchanter extends AContainer {
private final ItemSetting<Boolean> useEnchantLevelLimit = new ItemSetting<>(this, "use-enchant-level-limit", false);
private final IntRangeSetting enchantLevelLimit = new IntRangeSetting(this, "enchant-level-limit", 0, 10, Short.MAX_VALUE);
private final ItemSetting<List<String>> cantEnchantLores = new ItemSetting<>(this, "cant-enchant-lores", asList("&7- &cCan't be Auto-Enchanted"));
private final ItemSetting<List<String>> cantEnchantLores = new ItemSetting<>(this, "cant-enchant-lores", Arrays.asList("&7- &cCan't be Auto-Enchanted"));
@ParametersAreNonnullByDefault
public AutoEnchanter(Category category, SlimefunItemStack item, RecipeType recipeType, ItemStack[] recipe) {