Tweaks and fixes

This commit is contained in:
cyberpwn
2021-09-23 05:28:11 -04:00
parent 3378723bdd
commit 66da382789
5 changed files with 8 additions and 29 deletions

View File

@@ -224,7 +224,6 @@ public interface EngineMantle extends IObjectPlacer {
}
burst.complete();
getMantle().flag(x, z, MantleFlag.REAL, true);
}
default void generateMantleComponent(MantleWriter writer, int x, int z, MantleComponent c, MantleChunk mc) {
@@ -278,7 +277,7 @@ public interface EngineMantle extends IObjectPlacer {
for (int j = -s; j <= s; j++) {
int xx = i + x;
int zz = j + z;
if(!getMantle().hasFlag(xx, zz, MantleFlag.PLANNED))
if(!getMantle().hasFlag(xx, zz, MantleFlag.REAL))
{
return false;
}