Skip to content

Commit

Permalink
Fix #5651 Re-add canPlaceBlockOnSide check in World#mayPlace
Browse files Browse the repository at this point in the history
  • Loading branch information
tterrag1098 committed Mar 28, 2019
1 parent 69a44e6 commit e7beed4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion patches/minecraft/net/minecraft/world/World.java.patch
Original file line number Diff line number Diff line change
Expand Up @@ -914,7 +914,7 @@
else
{
- return iblockstate1.func_185904_a().func_76222_j() && p_190527_1_.func_176198_a(this, p_190527_2_, p_190527_4_);
+ return iblockstate1.func_177230_c().func_176200_f(this, p_190527_2_);
+ return iblockstate1.func_177230_c().func_176200_f(this, p_190527_2_) && p_190527_1_.func_176198_a(this, p_190527_2_, p_190527_4_);
}
}

Expand Down

0 comments on commit e7beed4

Please sign in to comment.