Prevent Spring block updates on chunk gen
This commit is contained in:
parent
7bbb853aae
commit
6eb39da66f
1 changed files with 6 additions and 0 deletions
|
@ -92,6 +92,12 @@ public class BlockSpring extends Block {
|
|||
world.setBlock(x, y + 1, z, spring.liquidBlock.blockID);
|
||||
}
|
||||
|
||||
// Prevents updates on chunk generation
|
||||
@Override
|
||||
public boolean func_82506_l() {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
@SideOnly(Side.CLIENT)
|
||||
public void registerIcons(IconRegister par1IconRegister) {
|
||||
|
|
Loading…
Reference in a new issue