Fixed incorrect detection of hybrid trees

This commit is contained in:
Sollace 2022-09-14 20:43:27 +02:00
parent 4c22212384
commit e4eb233f7a

View file

@ -148,7 +148,7 @@ public interface TreeType {
pos = pos.up();
}
return of(w.getBlockState(pos));
return of(w.getBlockState(pos.up()));
}
boolean isLeaves(BlockState state);