package portables.common.entity; import net.minecraft.block.Block; import net.minecraft.entity.item.EntityFallingBlock; import net.minecraft.world.World; public class CustomEntityFallingSand extends EntityFallingBlock { public CustomEntityFallingSand(World world, double x, double y, double z, Block block, int id) { super(world, x, y, z, block, id); } }