fixed kaolin overworld spawns! I may be stupid
This commit is contained in:
parent
be4f667c37
commit
4d122c614b
2 changed files with 13 additions and 0 deletions
|
|
@ -101,6 +101,7 @@ ServerEvents.tags('worldgen/placed_feature', event => {
|
|||
})
|
||||
|
||||
ServerEvents.tags('worldgen/biome', event => {
|
||||
registerTFCBiomeTags(event)
|
||||
registerTFGBiomeTags(event)
|
||||
})
|
||||
|
||||
|
|
|
|||
|
|
@ -476,11 +476,23 @@ const registerTFCFluidTags = (event) => {
|
|||
event.add('c:hidden_from_recipe_viewers', 'tfc:metal/high_carbon_blue_steel')
|
||||
}
|
||||
|
||||
const registerTFCBiomeTags = (event) => {
|
||||
|
||||
event.add('tfc:kaolin_clay_spawns_in', 'tfc:rolling_hills')
|
||||
}
|
||||
|
||||
const registerTFCPlacedFeatures = (event) => {
|
||||
|
||||
// Удаление
|
||||
event.removeAll('tfc:in_biome/veins')
|
||||
|
||||
// Add back the non-ore ones
|
||||
event.add('tfc:in_biome/veins', 'tfc:vein/gravel')
|
||||
event.add('tfc:in_biome/veins', 'tfc:vein/kaolin_disc')
|
||||
event.add('tfc:in_biome/veins', 'tfc:vein/granite_dike')
|
||||
event.add('tfc:in_biome/veins', 'tfc:vein/diorite_dike')
|
||||
event.add('tfc:in_biome/veins', 'tfc:vein/gabbro_dike')
|
||||
|
||||
// Добавление
|
||||
event.add('tfc:in_biome/veins', 'tfg:earth/vein/deep_garnet_amethyst')
|
||||
event.add('tfc:in_biome/veins', 'tfg:earth/vein/deep_garnet_opal')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue