MCPcopy Create free account
hub / github.com/DGVPSH/SlackOpen / BlockVine

Method BlockVine

src/main/java/net/minecraft/block/BlockVine.java:35–41  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

33 public static final PropertyBool[] ALL_FACES = new PropertyBool[] {UP, NORTH, SOUTH, WEST, EAST};
34
35 public BlockVine()
36 {
37 super(Material.vine);
38 this.setDefaultState(this.blockState.getBaseState().withProperty(UP, Boolean.FALSE).withProperty(NORTH, Boolean.FALSE).withProperty(EAST, Boolean.FALSE).withProperty(SOUTH, Boolean.FALSE).withProperty(WEST, Boolean.FALSE));
39 this.setTickRandomly(true);
40 this.setCreativeTab(CreativeTabs.tabDecorations);
41 }
42
43 /**
44 * Get the actual Block state of this Block at the given position. This applies properties not visible in the

Callers

nothing calls this directly

Calls 5

setDefaultStateMethod · 0.80
getBaseStateMethod · 0.80
setTickRandomlyMethod · 0.80
withPropertyMethod · 0.65
setCreativeTabMethod · 0.45

Tested by

no test coverage detected