diff options
Diffstat (limited to 'src/main/java/gregtech/common')
-rw-r--r-- | src/main/java/gregtech/common/fluid/GT_Fluid.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/gregtech/common/fluid/GT_Fluid.java b/src/main/java/gregtech/common/fluid/GT_Fluid.java index 98210c0e62..efec34bc01 100644 --- a/src/main/java/gregtech/common/fluid/GT_Fluid.java +++ b/src/main/java/gregtech/common/fluid/GT_Fluid.java @@ -97,8 +97,6 @@ public class GT_Fluid extends Fluid implements IGT_Fluid, IGT_RegisteredFluid, R if (FluidRegistry.registerFluid(GT_Fluid.this)) { // Registered as a new Fluid registeredFluid = this; - // Schedules the gtFluid for the block icons loader run() tasks - GregTech_API.sGTBlockIconload.add(this); // Adds a server-side localized-name GT_LanguageManager.addStringLocalization(getUnlocalizedName(), localizedName); } else { @@ -109,6 +107,8 @@ public class GT_Fluid extends Fluid implements IGT_Fluid, IGT_RegisteredFluid, R registeredFluid.setTemperature(GT_Fluid.this.temperature); } } + // Schedules the fluid for the block icons loader run() tasks + GregTech_API.sGTBlockIconload.add(this); return this; } |