minecraft-source/src/net/minecraft/world/level/block/WebBlock.java

19 lines
572 B
Java

package net.minecraft.world.level.block;
import net.minecraft.world.phys.Vec3;
import net.minecraft.world.entity.Entity;
import net.minecraft.core.BlockPos;
import net.minecraft.world.level.Level;
import net.minecraft.world.level.block.state.BlockState;
public class WebBlock extends Block {
public WebBlock(final Properties c) {
super(c);
}
@Override
public void entityInside(final BlockState byg, final Level bjt, final BlockPos fk, final Entity akn) {
akn.makeStuckInBlock(byg, new Vec3(0.25, 0.05000000074505806, 0.25));
}
}