9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-29 12:09:07 +00:00

Fix slabs

This commit is contained in:
Daniel Mills
2020-10-17 13:29:07 -04:00
parent 564c79c411
commit 4dcdbdec3a
2 changed files with 2 additions and 10 deletions

View File

@@ -388,7 +388,7 @@ public class PostMasterPatcher extends IrisPostBlockFilter
if(!cancel && isAirOrWater(x, c, z, currentPostX, currentPostZ, currentData))
{
Slab slab = (Slab) d.getBlockData();
Slab slab = (Slab) d.getBlockData().clone();
slab.setType(Type.TOP);
setPostBlock(x, c, z, d, currentPostX, currentPostZ, currentData);
}