lower some fluid temps

This commit is contained in:
Pyritie
2026-03-14 00:38:54 +00:00
parent 091b15574f
commit 9727aa3169
3 changed files with 4 additions and 3 deletions

View File

@@ -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

View File

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

View File

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