diff options
author | chochem <40274384+chochem@users.noreply.github.com> | 2024-11-24 18:39:30 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-24 18:39:30 +0000 |
commit | 433c17ecc8a68a2424fe702d3648ee828752ef21 (patch) | |
tree | a4289f4fabd738eb0616eb07518af8e266df5fc2 | |
parent | 528a22b5ab04fbfe5cff20ebdf428f79e8641ff9 (diff) | |
download | GT5-Unofficial-433c17ecc8a68a2424fe702d3648ee828752ef21.tar.gz GT5-Unofficial-433c17ecc8a68a2424fe702d3648ee828752ef21.tar.bz2 GT5-Unofficial-433c17ecc8a68a2424fe702d3648ee828752ef21.zip |
readd missing condition (#3554)
-rw-r--r-- | src/main/java/gregtech/loaders/preload/LoaderGTBlockFluid.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gregtech/loaders/preload/LoaderGTBlockFluid.java b/src/main/java/gregtech/loaders/preload/LoaderGTBlockFluid.java index 4324763bd3..c05ff7523e 100644 --- a/src/main/java/gregtech/loaders/preload/LoaderGTBlockFluid.java +++ b/src/main/java/gregtech/loaders/preload/LoaderGTBlockFluid.java @@ -1471,7 +1471,7 @@ public class LoaderGTBlockFluid implements Runnable { GTMod.gregtechproxy.addAutogeneratedMoltenFluid(tMaterial.mSmeltInto); } } - if (tMaterial.mElement != null || tMaterial.mHasPlasma) { + if (tMaterial.mElement != null || (tMaterial.mHasPlasma && !tMaterial.mIconSet.is_custom)) { GTMod.gregtechproxy.addAutogeneratedPlasmaFluid(tMaterial); } if (tMaterial.hasCorrespondingFluid()) { |