Separate surface and underground library marker options

This commit is contained in:
Electroblob77
2020-07-15 00:30:08 +01:00
parent a945201cec
commit a831c2ada3
6 changed files with 20 additions and 6 deletions
@@ -94,7 +94,7 @@ public class WorldGenLibraryRuins extends WorldGenSurfaceStructure {
template.addBlocksToWorld(world, origin, processor, settings, 2 | 16);
WizardryAntiqueAtlasIntegration.markLibrary(world, origin.getX(), origin.getZ());
WizardryAntiqueAtlasIntegration.markLibrary(world, origin.getX(), origin.getZ(), false);
}
}
@@ -98,7 +98,7 @@ public class WorldGenUndergroundLibraryRuins extends WorldGenUndergroundStructur
template.addBlocksToWorld(world, origin, processor, settings, 2 | 16);
WizardryAntiqueAtlasIntegration.markLibrary(world, origin.getX(), origin.getZ());
WizardryAntiqueAtlasIntegration.markLibrary(world, origin.getX(), origin.getZ(), true);
}
}