remove vanilla methods from ConfigPack

This commit is contained in:
dfsek
2021-12-16 22:50:48 -07:00
parent 1852d9103f
commit 8773c414c5
5 changed files with 42 additions and 83 deletions
@@ -79,22 +79,26 @@ public class BukkitChunkGeneratorWrapper extends org.bukkit.generator.ChunkGener
@Override
public boolean shouldGenerateCaves() {
return pack.vanillaCaves();
return false;
//return pack.vanillaCaves();
}
@Override
public boolean shouldGenerateDecorations() {
return pack.vanillaFlora();
return false;
//return pack.vanillaFlora();
}
@Override
public boolean shouldGenerateMobs() {
return pack.vanillaMobs();
return true;
//return pack.vanillaMobs();
}
@Override
public boolean shouldGenerateStructures() {
return pack.vanillaStructures();
return false;
//return pack.vanillaStructures();
}