Skip to content

Commit

Permalink
i am stupid
Browse files Browse the repository at this point in the history
  • Loading branch information
YoungOnionMC committed Jul 30, 2024
1 parent 133ad43 commit f2e8202
Showing 1 changed file with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,9 @@ public static void appendFluidTooltips(Fluid fluid, long amount, List<Component>

attributedFluid.getAttributes().forEach(a -> a.appendFluidTooltips(tooltips));
}
if (tooltips.size() > 3) {
tooltips.add(Component.translatable("gtceu.fluid.temperature", fluidType.getTemperature()));
if (fluidType.getTemperature() < FluidConstants.CRYOGENIC_FLUID_THRESHOLD) {
tooltips.add(Component.translatable("gtceu.fluid.temperature.cryogenic"));
}
tooltips.add(Component.translatable("gtceu.fluid.temperature", fluidType.getTemperature()));
if (fluidType.getTemperature() < FluidConstants.CRYOGENIC_FLUID_THRESHOLD) {
tooltips.add(Component.translatable("gtceu.fluid.temperature.cryogenic"));
}

if (material.hasProperty(PropertyKey.INGOT)) {
Expand Down

0 comments on commit f2e8202

Please sign in to comment.