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:
thederpysockdude123 2026-01-05 06:38:04 -07:00 committed by GitHub
parent 90775f0855
commit c17679c64d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 22 additions and 0 deletions

View file

@ -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) => {

View file

@ -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) => {