diff --git a/CHANGELOG.md b/CHANGELOG.md index baf47d955..8f9a6f1ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,7 @@ - Changed the HV Dynamo Hatch to be craftable before the Cleanroom @TomPlop - Added a 16A HV Dynamo Hatch @TomPlop - Adjusted how fast the player heats up and cools down @Pyritie +- Lowered the fluid temperatures of polysilicon, bakelite, and phenolic resin @Pyritie ### Bug fixes - Fixed crashes with the Greate encased fan @Electrolyte220 - Fixed EMI bookmarked recipe tooltip when GT machine UI is open @Mqrius diff --git a/kubejs/startup_scripts/tfg/materials/materials.bakelite.js b/kubejs/startup_scripts/tfg/materials/materials.bakelite.js index 5c6839a7e..4794bcf86 100644 --- a/kubejs/startup_scripts/tfg/materials/materials.bakelite.js +++ b/kubejs/startup_scripts/tfg/materials/materials.bakelite.js @@ -4,7 +4,7 @@ function registerTFGBakeliteMaterials(event) { event.create('tfg:bakelite') .polymer() - .fluid() + .liquid(new GTFluidBuilder().temperature(430)) .color(0xF29104) .secondaryColor(0xD96005) .components('1x phenol', '1x formaldehyde') @@ -16,7 +16,7 @@ function registerTFGBakeliteMaterials(event) { ) event.create('tfg:phenolic_resin') - .fluid() + .liquid(new GTFluidBuilder().temperature(430)) .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) .components('1x phenol', '1x formaldehyde') .color(0xFCD7A3) diff --git a/kubejs/startup_scripts/tfg/materials/materials.boules.js b/kubejs/startup_scripts/tfg/materials/materials.boules.js index 518cc7310..160197c01 100644 --- a/kubejs/startup_scripts/tfg/materials/materials.boules.js +++ b/kubejs/startup_scripts/tfg/materials/materials.boules.js @@ -35,7 +35,7 @@ function registerTFGBouleMaterials(event) { .color(0x8C8C94) .secondaryColor(0x10293b) .iconSet(GTMaterialIconSet.BRIGHT) - .liquid(new GTFluidBuilder().temperature(2273)) + .liquid(new GTFluidBuilder().temperature(1800)) .dust() .components('1x silicon') .flags(GTMaterialFlags.DISABLE_DECOMPOSITION)