BlockWeb

From Minecraft Parkour Wiki
Revision as of 15:12, 28 March 2020 by MCPK (talk | contribs)

Back to SourceCode

package net.minecraft.block;

public class BlockWeb extends Block
{
    public BlockWeb()
    {
        super(Material.web);
    }

    public void onEntityCollidedWithBlock(World worldIn, BlockPos pos, IBlockState state, Entity entityIn)
    {
        entityIn.setInWeb();
    }
}