Skip to content

Commit

Permalink
Fix some fluid textures (#1722)
Browse files Browse the repository at this point in the history
  • Loading branch information
serenibyss authored May 6, 2023
1 parent 20a8b4d commit 3c6b02d
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/main/java/gregtech/api/fluids/MetaFluids.java
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,8 @@ private static void setCustomTextures() {
setMaterialFluidTexture(Materials.Naquadria, FluidTypes.LIQUID);
setMaterialFluidTexture(Materials.Ice, FluidTypes.LIQUID);
setMaterialFluidTexture(Materials.UUMatter, FluidTypes.LIQUID);
setMaterialFluidTexture(Materials.Toluene, FluidTypes.LIQUID);
setMaterialFluidTexture(Materials.LiquidAir, FluidTypes.LIQUID);
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,6 @@ public static void register() {

LiquidAir = new Material.Builder(2051, "liquid_air")
.fluid()
.color(0xA9D0F5)
.flags(DISABLE_DECOMPOSITION)
.components(Nitrogen, 70, Oxygen, 22, CarbonDioxide, 5, Helium, 2, Argon, 1, Ice, 1)
.fluidTemp(79)
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"animation": {
"frametime": 2
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"animation": {
"frametime": 2
}
}

0 comments on commit 3c6b02d

Please sign in to comment.