This commit is contained in:
Pyritie
2025-06-24 15:06:38 +01:00
parent 006a1c8da9
commit b4ef70ac63
2 changed files with 3 additions and 3 deletions

View File

@@ -62,6 +62,7 @@ const registerCreateRecipes = (event) => {
})
event.remove({ type: 'minecraft:stonecutting', input: 'create:andesite_alloy' })
event.remove({ type: 'minecraft:stonecutting', input: 'create:rose_quartz' })
// Train Station
event.shapeless('2x create:track_station', [

View File

@@ -1,18 +1,17 @@
// priority: 0
const registerAE2TagPrefixes = (event) => {
const $AE_BLOCKS = Java.loadClass('appeng.core.definitions.AEBlocks');
const $AE_ITEMS = Java.loadClass('appeng.core.definitions.AEItems');
const Fluix = GTCEuAPI.materialManager.getMaterial('tfg:fluix')
TagPrefix.block.setIgnored(Fluix, $AE_BLOCKS.FLUIX_BLOCK);
// Blocks have to be handled in java because ae2 is weird
TagPrefix.dust.setIgnored(Fluix, $AE_ITEMS.FLUIX_DUST);
TagPrefix.gem.setIgnored(Fluix, $AE_ITEMS.FLUIX_CRYSTAL);
TagPrefix.dust.setIgnored(GTMaterials.CertusQuartz, $AE_ITEMS.CERTUS_QUARTZ_DUST);
TagPrefix.gem.setIgnored(GTMaterials.CertusQuartz, $AE_ITEMS.CERTUS_QUARTZ_CRYSTAL);
TagPrefix.rawOreBlock.setIgnored(GTMaterials.CertusQuartz, $AE_BLOCKS.QUARTZ_BLOCK);
TagPrefix.dust.setIgnored(GTMaterials.EnderPearl, $AE_ITEMS.ENDER_DUST);
}