Skip to content

Commit

Permalink
fix bukkit isSolid check
Browse files Browse the repository at this point in the history
  • Loading branch information
dfsek committed May 30, 2022
1 parent 38e4e9b commit d072e72
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public BlockState getDefaultState() {

@Override
public boolean isSolid() {
return delegate.isSolid();
return delegate.isOccluding();
}

@Override
Expand Down

0 comments on commit d072e72

Please sign in to comment.