diff options
author | miozune <miozune@gmail.com> | 2023-05-11 13:46:12 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-11 06:46:12 +0200 |
commit | 7b1eb7d25c723b1658896c739d60af81f52746b6 (patch) | |
tree | 01725f72d4b12846b22a2808702c2867b459b7a7 /src | |
parent | f3ddb433e0f0f4e554638f897e66051a463fdc86 (diff) | |
download | GT5-Unofficial-7b1eb7d25c723b1658896c739d60af81f52746b6.tar.gz GT5-Unofficial-7b1eb7d25c723b1658896c739d60af81f52746b6.tar.bz2 GT5-Unofficial-7b1eb7d25c723b1658896c739d60af81f52746b6.zip |
Add cell item for some fluids (#1974)
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/gregtech/common/items/GT_MetaGenerated_Item_98.java | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/src/main/java/gregtech/common/items/GT_MetaGenerated_Item_98.java b/src/main/java/gregtech/common/items/GT_MetaGenerated_Item_98.java index 32f1d41197..0bf4377668 100644 --- a/src/main/java/gregtech/common/items/GT_MetaGenerated_Item_98.java +++ b/src/main/java/gregtech/common/items/GT_MetaGenerated_Item_98.java @@ -48,11 +48,16 @@ public class GT_MetaGenerated_Item_98 extends GT_MetaGenerated_Item { * leave a comment mentioning the old ID, so that we don't re-use it for a new fluid. */ public enum FluidCell { - // Next unused ID: 22 + // Next unused ID: 27 // GregTech DRILLING_FLUID(5, "liquid_drillingfluid", CellType.REGULAR), SQUID_INK(6, "squidink", CellType.SMALL), + BLUE_VITRIOL(22, "solution.bluevitriol", CellType.REGULAR), + NICKEL_SULFATE(23, "solution.nickelsulfate", CellType.REGULAR), + GREEN_VITRIOL(24, "solution.greenvitriol", CellType.REGULAR), + INDIUM_CONCENTRATE(25, "indiumconcentrate", CellType.REGULAR), + LEAD_ZINC_SOLUTION(26, "leadzincsolution", CellType.REGULAR), // New Horizons Core Mod UNKNOWN_NUTRIENT_AGAR(7, "unknownnutrientagar", CellType.REGULAR), @@ -119,7 +124,7 @@ public class GT_MetaGenerated_Item_98 extends GT_MetaGenerated_Item { /** * Get a copy of this stack with stack size 1. - * + * <p> * Always returns non-null stack even if the fluid referenced doesn't exist, so don't assume it's always valid. */ public ItemStack get() { @@ -129,9 +134,9 @@ public class GT_MetaGenerated_Item_98 extends GT_MetaGenerated_Item { /** * Get a copy of this cell WITHOUT copy. - * + * <p> * Always returns non-null stack even if the fluid referenced doesn't exist, so don't assume it's always valid. - * + * <p> * Use with caution. */ public ItemStack getNoCopy() { @@ -141,7 +146,7 @@ public class GT_MetaGenerated_Item_98 extends GT_MetaGenerated_Item { /** * Get a copy of this cell with specified stack size. - * + * <p> * Always returns non-null stack even if the fluid referenced doesn't exist, so don't assume it's always valid. */ public ItemStack get(int aStackSize) { |