Fix inverted logic preventing blocks from breaking.
This commit is contained in:
parent
8dc71d5ffa
commit
a059a9a7fb
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@
|
|||
Block block = this.field_73092_a.func_180495_p(p_180785_1_).func_177230_c();
|
||||
|
||||
- if (block.func_149688_o() != Material.field_151579_a)
|
||||
+ if (block.isAir(field_73092_a, p_180785_1_))
|
||||
+ if (!block.isAir(field_73092_a, p_180785_1_))
|
||||
{
|
||||
float f = block.func_180647_a(this.field_73090_b, this.field_73090_b.field_70170_p, p_180785_1_) * (float)(i + 1);
|
||||
|
||||
|
|
Loading…
Reference in a new issue