fixed a crash when tping to the moon lol

This commit is contained in:
Pyritie 2025-04-30 00:29:53 +01:00
parent c74339adb7
commit 187e5a2f5f
23 changed files with 2666 additions and 2797 deletions

View file

@ -62,21 +62,21 @@ const registerTFCTagPrefixes = (event) => {
.materialSupplier(() => GTMaterials.Deepslate)
event.create('anorthosite', 'ore')
.stateSupplier(() => Block.getBlock('tfg:raw_anorthosite').defaultBlockState())
.stateSupplier(() => Block.getBlock('tfg:rock/raw_anorthosite').defaultBlockState())
.baseModelLocation('ad_astra:block/moon_stone')
.unificationEnabled(true)
.materialIconType(GTMaterialIconType.ore)
.generationCondition(ItemGenerationCondition.hasOreProperty)
event.create('basanite', 'ore')
.stateSupplier(() => Block.getBlock('tfg:raw_basanite').defaultBlockState())
.stateSupplier(() => Block.getBlock('tfg:rock/raw_basanite').defaultBlockState())
.baseModelLocation('ad_astra:block/moon_deepslate')
.unificationEnabled(true)
.materialIconType(GTMaterialIconType.ore)
.generationCondition(ItemGenerationCondition.hasOreProperty)
event.create('syenite', 'ore')
.stateSupplier(() => Block.getBlock('tfg:raw_syenite').defaultBlockState())
.stateSupplier(() => Block.getBlock('tfg:rock/raw_syenite').defaultBlockState())
.baseModelLocation('ad_astra:block/mars_stone')
.unificationEnabled(true)
.materialIconType(GTMaterialIconType.ore)

View file

@ -20,14 +20,14 @@ global.AIRCRAFT_UPGRADES = [
]
global.EXTRATERRESTRIAL_RAW_ROCKS = [
'tfg:raw_anorthosite',
'tfg:raw_basanite',
'tfg:raw_syenite'
'tfg:rock/raw_anorthosite',
'tfg:rock/raw_basanite',
'tfg:rock/raw_syenite'
]
global.EXTRATERRESTRIAL_HARDENED_ROCKS = [
'tfg:hardened_anorthosite',
'tfg:hardened_syenite'
'tfg:rock/hardened_anorthosite',
'tfg:rock/hardened_syenite'
]
global.MOON_BIOMES = [

View file

@ -56,7 +56,7 @@ const registerTFGItems = (event) => {
event.create('tfg:brick/syenite')
.translationKey('item.tfg.brick.syenite')
event.create('tfg:dust/anorthosite_dust')
event.create('tfg:dust/anorthosite')
.translationKey('item.tfg.dust.anorthosite')
event.create('tfg:dust/syenite')