Skip to content

Commit

Permalink
Fix #777 Falling block falling though scaffolds
Browse files Browse the repository at this point in the history
  • Loading branch information
joserobjr committed Nov 22, 2020
1 parent 39d8519 commit efcbf79
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -15,6 +15,7 @@ Click the link above to see the future.
- _Alpha Bug_: Fixes entities from the MobPlugin going into the ground (compatibility issue)
- [#770] Bamboo not dropping when broken, were also affecting blocks with id > 255
- [#776] Error saving region files with content over 2 GB
- [#777] Falling block falling though scaffolds
- [#778] Compatibility fix: Unable to change MobPlugin spawner with eggs
- [#778] Unable to get `minecraft:mob_spawner` with `/give Nick mob_spawner`

Expand Down Expand Up @@ -627,4 +628,5 @@ Fixes several anvil issues.
[#544]: https://github.com/PowerNukkit/PowerNukkit/issues/544
[#770]: https://github.com/PowerNukkit/PowerNukkit/issues/770
[#776]: https://github.com/PowerNukkit/PowerNukkit/issues/776
[#777]: https://github.com/PowerNukkit/PowerNukkit/issues/777
[#778]: https://github.com/PowerNukkit/PowerNukkit/issues/778
2 changes: 1 addition & 1 deletion src/main/java/cn/nukkit/block/BlockScaffolding.java
Expand Up @@ -240,7 +240,7 @@ protected AxisAlignedBB recalculateCollisionBoundingBox() {

@Override
public boolean canPassThrough() {
return true;
return false;
}

@Override
Expand Down

0 comments on commit efcbf79

Please sign in to comment.