Thallasium Chandelier (floor, WIP)

This commit is contained in:
paulevsGitch 2021-01-21 08:05:35 +03:00
parent 7e9d809814
commit 6b8422dae3
58 changed files with 306 additions and 87 deletions

View file

@ -0,0 +1,25 @@
package ru.betterend.blocks.basis;
import net.minecraft.block.BlockState;
import net.minecraft.entity.EntityType;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.BlockView;
public class BlockBaseNotFull extends BlockBase {
public BlockBaseNotFull(Settings settings) {
super(settings);
}
public boolean canSuffocate(BlockState state, BlockView view, BlockPos pos) {
return false;
}
public boolean isSimpleFullBlock(BlockState state, BlockView view, BlockPos pos) {
return false;
}
public boolean allowsSpawning(BlockState state, BlockView view, BlockPos pos, EntityType<?> type) {
return false;
}
}