Fix invalid argument being passed to Block.isNormalCube from World.updateNeighbors. Closes #1339 and Closes #1346
This commit is contained in:
parent
4e39515d12
commit
83bcebf3b1
1 changed files with 1 additions and 1 deletions
|
@ -922,7 +922,7 @@
|
||||||
|
|
||||||
- if (Blocks.field_150441_bU.func_149907_e(block1))
|
- if (Blocks.field_150441_bU.func_149907_e(block1))
|
||||||
+ block1.onNeighborChange(this, i1, y, j1, p_147453_1_, p_147453_2_, p_147453_3_);
|
+ block1.onNeighborChange(this, i1, y, j1, p_147453_1_, p_147453_2_, p_147453_3_);
|
||||||
+ if (block1.isNormalCube(this, i1, p_147453_2_, j1))
|
+ if (block1.isNormalCube(this, i1, y, j1))
|
||||||
{
|
{
|
||||||
- block1.func_149695_a(this, i1, p_147453_2_, j1, p_147453_4_);
|
- block1.func_149695_a(this, i1, p_147453_2_, j1, p_147453_4_);
|
||||||
- }
|
- }
|
||||||
|
|
Loading…
Reference in a new issue