aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gtPlusPlus/xmod/gregtech/registration
diff options
context:
space:
mode:
authorBlueHero233 <87818077+BlueHero233@users.noreply.github.com>2024-08-26 20:06:06 -0300
committerGitHub <noreply@github.com>2024-08-26 23:06:06 +0000
commitec179c919c4b3a486ca46f080fc71c613f644000 (patch)
treed9b9c9c801bbc52c9d085bf9a5923784d6dc2bb5 /src/main/java/gtPlusPlus/xmod/gregtech/registration
parent672a5e4add8f17e38dc6274ffa6286d0ccebe508 (diff)
downloadGT5-Unofficial-ec179c919c4b3a486ca46f080fc71c613f644000.tar.gz
GT5-Unofficial-ec179c919c4b3a486ca46f080fc71c613f644000.tar.bz2
GT5-Unofficial-ec179c919c4b3a486ca46f080fc71c613f644000.zip
Texturework in GT++ (#2945)
* Leaves, Breads and Pizzas re texture * Crop Blocks Added * Fix Advanced Boilers top texture * Adding more controller faces * Remove redundant code * Finish controllers and code readability * spotlessApply to fix violations * Better Tank texture * Various Fixes * Various Fixes * Oopsies * Spotless Apply again... minor adjustments to drinks * Revert public api changes and scanner textures reference couldnt find reason why it was throwing NoSuchFieldError even when crops plus plus was recompiled with correct paths * spotless --------- Co-authored-by: Martin Robertz <dream-master@gmx.net>
Diffstat (limited to 'src/main/java/gtPlusPlus/xmod/gregtech/registration')
-rw-r--r--src/main/java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechCustomHatches.java27
1 files changed, 9 insertions, 18 deletions
diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechCustomHatches.java b/src/main/java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechCustomHatches.java
index 2e9c73808b..c3e2f8ea4e 100644
--- a/src/main/java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechCustomHatches.java
+++ b/src/main/java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechCustomHatches.java
@@ -52,29 +52,23 @@ public class GregtechCustomHatches {
GregtechItemList.Hatch_Input_Cryotheum.set(
new GT_MetaTileEntity_Hatch_CustomFluidBase(
FluidUtils.getFluidStack("cryotheum", 1)
- .getFluid(), // Fluid
- // to
- // resitrct
- // hatch
- // to
+ .getFluid(), // Fluid to restrict hatch to
128000, // Capacity
Hatch_Input_Cryotheum.ID, // ID
"hatch.cryotheum.input.tier.00", // unlocal name
- "Cryotheum Cooling Hatch" // Local name
+ "Cryotheum Cooling Hatch", // Local name
+ 5 // Casing Texture
).getStackForm(1L));
GregtechItemList.Hatch_Input_Pyrotheum.set(
new GT_MetaTileEntity_Hatch_CustomFluidBase(
FluidUtils.getFluidStack("pyrotheum", 1)
- .getFluid(), // Fluid
- // to
- // resitrct
- // hatch
- // to
+ .getFluid(), // Fluid to restrict hatch to
128000, // Capacity
Hatch_Input_Pyrotheum.ID, // ID
"hatch.pyrotheum.input.tier.00", // unlocal name
- "Pyrotheum Heating Vent" // Local name
+ "Pyrotheum Heating Vent", // Local name
+ 5 // Casing texture
).getStackForm(1L));
GregtechItemList.Hatch_Input_Naquadah.set(
@@ -117,15 +111,12 @@ public class GregtechCustomHatches {
GregtechItemList.Hatch_Input_Steam.set(
new GT_MetaTileEntity_Hatch_CustomFluidBase(
FluidUtils.getSteam(1)
- .getFluid(), // Fluid
- // to
- // resitrct
- // hatch
- // to
+ .getFluid(), // Fluid to restrict hatch to
64000, // Capacity
Hatch_Input_Steam.ID, // ID
"hatch.steam.input.tier.00", // unlocal name
- "Steam Hatch" // Local name
+ "Steam Hatch", // Local name
+ 0 // Casing texture
).getStackForm(1L));
}