mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-18 18:23:06 +00:00
Fix bedrock placing stone if false
This commit is contained in:
parent
f5abee1f92
commit
63cd793407
@ -57,9 +57,13 @@ public class IrisTerrainActuator extends EngineAssignedActuator<BlockData>
|
||||
continue;
|
||||
}
|
||||
|
||||
if(i == b && getDimension().isBedrock())
|
||||
if(i == b)
|
||||
{
|
||||
if(getDimension().isBedrock())
|
||||
{
|
||||
h.set(xf, i, zf, BEDROCK);
|
||||
}
|
||||
|
||||
continue;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user