diff --git a/CHANGELOG.md b/CHANGELOG.md index 32fa27bc4..182c7f0af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ - Fixed Uranium Triplatinum not requiring Radon in the Alloy Blast Smelter @TomPlop - Added a workaround for oil spouts sometimes giving a fluid that couldn't be used in non-GregTech machines @Pyritie - Fixed an issue with server overrides sometimes not applying to server pack exports (#3088) @Mqrius +- Fixed more startup issues when the system language is set to Turkish (#3099) @Pyritie ### Translation updates - Chinese (simplified) @jmecn - German @Enderderschander diff --git a/kubejs/startup_scripts/gtceu/material_modification.js b/kubejs/startup_scripts/gtceu/material_modification.js index 705bf42c7..3eec7d138 100644 --- a/kubejs/startup_scripts/gtceu/material_modification.js +++ b/kubejs/startup_scripts/gtceu/material_modification.js @@ -341,7 +341,7 @@ const registerGTCEuMaterialModification = (event) => { // Unhiding elements GTMaterials.Zirconium.setProperty(PropertyKey.DUST, new $DUST_PROPERTY()); GTMaterials.Zirconium.setProperty(PropertyKey.INGOT, new $INGOT_PROPERTY()); - GTMaterials.Zirconium.setProperty(PropertyKey.BLAST, new $BLAST_PROPERTY(4200, 'mid', GTValues.VA[GTValues.EV], 1300, GTValues.VA[GTValues.HV], 14.7*20)); + GTMaterials.Zirconium.setProperty(PropertyKey.BLAST, new $BLAST_PROPERTY(4200, $BLAST_PROPERTY.GasTier.MID, GTValues.VA[GTValues.EV], 1300, GTValues.VA[GTValues.HV], 14.7*20)); GTMaterials.Zirconium.addFlags(GENERATE_FINE_WIRE, GENERATE_PLATE, GENERATE_DENSE, NO_ORE_SMELTING); // Tools diff --git a/kubejs/startup_scripts/tfg/blocks.crops.js b/kubejs/startup_scripts/tfg/blocks.crops.js index 3cbbca165..86055b28d 100644 --- a/kubejs/startup_scripts/tfg/blocks.crops.js +++ b/kubejs/startup_scripts/tfg/blocks.crops.js @@ -2,6 +2,7 @@ "use strict"; const registerTFGCrops = (event) => { + const $FarmlandBlockEntity = Java.loadClass("net.dries007.tfc.common.blockentities.FarmlandBlockEntity") // Earth Crops @@ -9,7 +10,7 @@ const registerTFGCrops = (event) => { .translationKey('block.tfg.sunflower') .mapColor('plant') .soundType('crop') - .nutrient('nitrogen') + .nutrient($FarmlandBlockEntity.NutrientType.NITROGEN) .stages(4) .doubleStages(2) .hardness(0.4) @@ -44,7 +45,7 @@ const registerTFGCrops = (event) => { .mapColor('plant') .translationKey('block.tfg.rapeseed') .soundType('crop') - .nutrient('phosphorous') + .nutrient($FarmlandBlockEntity.NutrientType.PHOSPHOROUS) .stages(3) .doubleStages(3) .hardness(0.4) @@ -72,7 +73,7 @@ const registerTFGCrops = (event) => { .mapColor('plant') .translationKey('block.tfg.flax') .soundType('crop') - .nutrient('nitrogen') + .nutrient($FarmlandBlockEntity.NutrientType.NITROGEN) .stages(5) .doubleStages(3) .hardness(0.4) @@ -108,7 +109,7 @@ const registerTFGCrops = (event) => { event.create('betterend:amber_root', 'tfc:crop') .mapColor('color_orange') .soundType('crop') - .nutrient('phosphorous') + .nutrient($FarmlandBlockEntity.NutrientType.PHOSPHOROUS) .stages(3) .hardness(0.4) .tagBlock('minecraft:mineable/hoe') @@ -140,7 +141,7 @@ const registerTFGCrops = (event) => { event.create('betterend:blossom_berry', 'tfc:crop') .mapColor('color_pink') .soundType('crop') - .nutrient('potassium') + .nutrient($FarmlandBlockEntity.NutrientType.POTASSIUM) .stages(3) .hardness(0.4) .tagBlock('minecraft:mineable/hoe') @@ -184,7 +185,7 @@ const registerTFGCrops = (event) => { event.create('betterend:cave_pumpkin_plant', 'tfc:spreading_crop') .mapColor('plant') .soundType('crop') - .nutrient('nitrogen') + .nutrient($FarmlandBlockEntity.NutrientType.NITROGEN) .stages(3) .hardness(0.4) .tagBlock('minecraft:mineable/hoe') @@ -217,7 +218,7 @@ const registerTFGCrops = (event) => { .mapColor('color_purple') .translationKey('block.betterend.chorus_mushroom') .soundType('nether_wart') - .nutrient('phosphorous') + .nutrient($FarmlandBlockEntity.NutrientType.PHOSPHOROUS) .stages(3) .hardness(0.4) .tagBlock('minecraft:mineable/hoe') @@ -255,7 +256,7 @@ const registerTFGCrops = (event) => { .mapColor('color_blue') .soundType('crop') .box(2, 0, 2, 14, 3, 14) - .nutrient('potassium') + .nutrient($FarmlandBlockEntity.NutrientType.POTASSIUM) .stages(3) .hardness(0.4) .tagBlock('minecraft:mineable/hoe') @@ -290,7 +291,7 @@ const registerTFGCrops = (event) => { .mapColor('color_orange') .soundType('nether_wart') .box(2, 0, 2, 14, 5, 14) - .nutrient('phosphorous') + .nutrient($FarmlandBlockEntity.NutrientType.PHOSPHOROUS) .stages(3) .hardness(0.4) .tagBlock('minecraft:mineable/hoe')