Add ad astra metal blocks to domum ornamentum blocks whitelist (#2627)
* Update tags.js Signed-off-by: thederpysockdude123 <thederpysockdude123@gmail.com> * added Ad Astra metal blocks to domum ornamentum blocks whitelist Signed-off-by: thederpysockdude123 <thederpysockdude123@gmail.com> * gave the Ad Astra metal blocks a block tag Signed-off-by: thederpysockdude123 <thederpysockdude123@gmail.com> * Update tags.js Signed-off-by: thederpysockdude123 <thederpysockdude123@gmail.com> * dw about that Signed-off-by: thederpysockdude123 <thederpysockdude123@gmail.com> * removed some s's so KubeJS behaves Signed-off-by: thederpysockdude123 <thederpysockdude123@gmail.com> * removed some s's so KubeJS behaves Signed-off-by: thederpysockdude123 <thederpysockdude123@gmail.com> * added Ad Astra metal blocks to domum ornamentum blocks whitelist (fr this time) Signed-off-by: thederpysockdude123 <thederpysockdude123@gmail.com> --------- Signed-off-by: thederpysockdude123 <thederpysockdude123@gmail.com>
This commit is contained in:
parent
90775f0855
commit
c17679c64d
2 changed files with 22 additions and 0 deletions
|
|
@ -107,6 +107,21 @@ const registerAdAstraBlockTags = (event) => {
|
|||
event.add('minecraft:logs_that_burn', wood.stripped_log)
|
||||
}
|
||||
})
|
||||
const DECO_BLOCKS = [ 'iron', 'steel', 'desh', 'calorite', 'ostrum' ];
|
||||
DECO_BLOCKS.forEach(block => {
|
||||
event.add(`tfg:ad_astra_${block}_block`, `ad_astra:${block}_factory_block`)
|
||||
event.add(`tfg:ad_astra_${block}_block`, `ad_astra:${block}_plating`)
|
||||
event.add(`tfg:ad_astra_${block}_block`, `ad_astra:${block}_panel`)
|
||||
event.add(`tfg:ad_astra_${block}_block`, `ad_astra:${block}_pillar`)
|
||||
event.add(`tfg:ad_astra_${block}_block`, `ad_astra:${block}_plateblock`)
|
||||
event.add(`tfg:ad_astra_${block}_block`, `ad_astra:encased_${block}_block`)
|
||||
})
|
||||
|
||||
event.add('tfg:ad_astra_etrium_block', 'ad_astra:etrium_factory_block')
|
||||
event.add('tfg:ad_astra_etrium_block', 'ad_astra:encased_etrium_block')
|
||||
event.add('tfg:ad_astra_etrium_block', 'ad_astra:etrium_plateblock')
|
||||
event.add('tfg:ad_astra_etrium_block', 'ad_astra:etrium_panel')
|
||||
event.add('tfg:ad_astra_etrium_block', 'ad_astra:etrium_block')
|
||||
}
|
||||
|
||||
const registerAdAstraBiomeTags = (event) => {
|
||||
|
|
|
|||
|
|
@ -152,6 +152,13 @@ function registerDomumOrnamentumBlockTags(event) {
|
|||
"createdeco:corner_pearl_bricks",
|
||||
"createdeco:cracked_pearl_bricks",
|
||||
"createdeco:mossy_pearl_bricks",
|
||||
//Ad Astra blocks
|
||||
"#tfg:ad_astra_iron_block",
|
||||
"#tfg:ad_astra_etrium_block",
|
||||
"#tfg:ad_astra_steel_block",
|
||||
"#tfg:ad_astra_desh_block",
|
||||
"#tfg:ad_astra_ostrum_block",
|
||||
"#tfg:ad_astra_calorite_block",
|
||||
];
|
||||
|
||||
materials.forEach((material) => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue