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

@ -18,7 +18,6 @@ import net.minecraft.world.level.storage.loot.parameters.LootContextParams;
import net.fabricmc.api.EnvType;
import net.fabricmc.api.Environment;
import net.fabricmc.fabric.api.object.builder.v1.block.FabricBlockSettings;
import java.util.Collections;
import java.util.List;
@ -43,7 +42,7 @@ public class BaseBookshelfBlock extends BaseBlock {
}
public BaseBookshelfBlock(Block source) {
this(FabricBlockSettings.copyOf(source));
this(Properties.copy(source));
}
public BaseBookshelfBlock(BlockBehaviour.Properties properties) {