Removed Property Dependencies

This commit is contained in:
Frank 2022-07-13 00:12:16 +02:00
parent 9753373429
commit 9e3ba00db8
40 changed files with 93 additions and 121 deletions

View file

@ -2,8 +2,7 @@ package org.betterx.bclib.interfaces;
import net.minecraft.resources.ResourceLocation;
import net.minecraft.world.item.BlockItem;
import net.fabricmc.fabric.api.item.v1.FabricItemSettings;
import net.minecraft.world.item.Item;
public interface CustomItemProvider {
/**
@ -11,5 +10,5 @@ public interface CustomItemProvider {
*
* @return {@link BlockItem}
*/
BlockItem getCustomItem(ResourceLocation blockID, FabricItemSettings settings);
BlockItem getCustomItem(ResourceLocation blockID, Item.Properties settings);
}