mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-02-24 06:50:46 +00:00
resolve hopefully i hope
This commit is contained in:
parent
a24bed5337
commit
9a7f991092
@ -103,8 +103,6 @@ public class NTMWorldGenerator implements IWorldGenerator {
|
|||||||
spawnWeight = 8;
|
spawnWeight = 8;
|
||||||
}});
|
}});
|
||||||
|
|
||||||
NBTStructure.registerNullWeight(0, 2, oceanBiomes::contains); //why the fuck did this change
|
|
||||||
|
|
||||||
NBTStructure.registerStructure(0, new SpawnCondition("dish") {{
|
NBTStructure.registerStructure(0, new SpawnCondition("dish") {{
|
||||||
canSpawn = biome -> biome == BiomeGenBase.plains;
|
canSpawn = biome -> biome == BiomeGenBase.plains;
|
||||||
structure = new JigsawPiece("dish", StructureManager.dish, -10);
|
structure = new JigsawPiece("dish", StructureManager.dish, -10);
|
||||||
@ -113,8 +111,16 @@ public class NTMWorldGenerator implements IWorldGenerator {
|
|||||||
spawnWeight = 1;
|
spawnWeight = 1;
|
||||||
}});
|
}});
|
||||||
|
|
||||||
|
NBTStructure.registerStructure(0, new SpawnCondition("labolatory") {{
|
||||||
|
canSpawn = biome -> biome == BiomeGenBase.plains;
|
||||||
|
structure = new JigsawPiece("laboratory", StructureManager.laboratory, -10);
|
||||||
|
minHeight = 53;
|
||||||
|
maxHeight = 65;
|
||||||
|
spawnWeight = 8;
|
||||||
|
}});
|
||||||
|
|
||||||
NBTStructure.registerNullWeight(0, 2, biome -> biome == BiomeGenBase.plains);
|
NBTStructure.registerNullWeight(0, 2, biome -> biome == BiomeGenBase.plains);
|
||||||
NBTStructure.registerNullWeight(0, 2, oceanBiomes::contains);
|
NBTStructure.registerNullWeight(0, 4, oceanBiomes::contains);
|
||||||
|
|
||||||
Map<Block, BlockSelector> bricks = new HashMap<Block, BlockSelector>() {{
|
Map<Block, BlockSelector> bricks = new HashMap<Block, BlockSelector>() {{
|
||||||
put(ModBlocks.meteor_brick, new MeteorBricks());
|
put(ModBlocks.meteor_brick, new MeteorBricks());
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user