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

Smart Bore & Islands

This commit is contained in:
Daniel Mills
2020-09-04 01:15:38 -04:00
parent b201cf1990
commit d144b9ba0b
11 changed files with 253 additions and 57 deletions

View File

@@ -19,4 +19,6 @@ public interface IObjectPlacer
public boolean isUnderwater(int x, int z);
public int getFluidHeight();
public boolean isDebugSmartBore();
}

View File

@@ -1215,4 +1215,10 @@ public class StructureTemplate implements Listener, IObjectPlacer
this.center = center;
updateTiles(focus, null, null);
}
@Override
public boolean isDebugSmartBore()
{
return false;
}
}