Skip to content

Commit 746fccf

Browse files
committed
Make #fullcube match double slabs
1 parent c7b06ac commit 746fccf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

worldedit-core/src/main/java/com/sk89q/worldedit/function/mask/FullCubeMask.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public FullCubeMask(Extent extent) {
3333
public boolean test(BlockVector3 vector) {
3434
Extent extent = getExtent();
3535
BlockState block = extent.getBlock(vector);
36-
return block.getBlockType().getMaterial().isFullCube();
36+
return block.getMaterial().isFullCube();
3737
}
3838

3939
}

0 commit comments

Comments
 (0)