From b65dd8ef88f5a06930a0cda85cef52d6dc1fc9dd Mon Sep 17 00:00:00 2001 From: Boblet Date: Thu, 19 Sep 2024 16:57:14 +0200 Subject: [PATCH] minor recipe changes --- changelog | 17 ++--------------- src/main/java/com/hbm/blocks/ModBlocks.java | 2 +- .../inventory/recipes/AssemblerRecipes.java | 6 +++--- .../hbm/inventory/recipes/PyroOvenRecipes.java | 2 +- .../textures/items/ingot_beskar_single_alt.png | Bin 0 -> 482 bytes .../hbm/textures/items/ingot_ceramic.png | Bin 0 -> 344 bytes 6 files changed, 7 insertions(+), 20 deletions(-) create mode 100644 src/main/resources/assets/hbm/textures/items/ingot_beskar_single_alt.png create mode 100644 src/main/resources/assets/hbm/textures/items/ingot_ceramic.png diff --git a/changelog b/changelog index 954da9f28..2d40670a6 100644 --- a/changelog +++ b/changelog @@ -1,16 +1,3 @@ ## Changed -* The ambient radiation generator's functionality and recipe have been disabled as it is being deprecated -* The pyrolysis oven is now compatible with overdrive upgrades -* Steel walls and corners no longer use TESRs for rendering, making them more performant at large scale and fixing any oddities regarding their rendering -* Steel walls and corners can now be rotated using the screwdriver (right click for clockwise, shift click for counter-clockwise) -* Steel walls and corners now use new textures as well as slightly cleaner models -* Steel corner bounding boxes now closely match their model - -## Fixed -* Fixed crash caused by the pyrolysis oven on servers - * Due this type of issue happening constantly, the GUI provider system no longer uses any client-only code -* Fixed small black bar rendering under the arrow box of NEI universal handlers when using the NH NEI fork -* Fixed desh screwdrivers not being usable for picking locks -* Possibly fixed an issue caused by MouseTweaks (in combination with other mods) duplicating click input (I can't replicate the issue so I can at best guess) -* Fixed pyrolysis ovens not being able to operate due to the output buffer being full, despite the buffer being a different type -* Fixed a vanilla bug in the standard block renderer causing boxduct bends to have incorrect UV on the -Z and +X sides \ No newline at end of file +* The fine soot recipe in the pyrolysis oven now only needs 4 tar +* Overdrive upgrades now use fullerite instead of lithium crystals \ No newline at end of file diff --git a/src/main/java/com/hbm/blocks/ModBlocks.java b/src/main/java/com/hbm/blocks/ModBlocks.java index de8842189..9550cd93d 100644 --- a/src/main/java/com/hbm/blocks/ModBlocks.java +++ b/src/main/java/com/hbm/blocks/ModBlocks.java @@ -2736,7 +2736,7 @@ public class ModBlocks { register(steel_scaffold); GameRegistry.registerBlock(steel_grate, steel_grate.getUnlocalizedName()); register(steel_grate_wide); - register(scaffold_dynamic); + //register(scaffold_dynamic); GameRegistry.registerBlock(deco_pipe, ItemBlockBase.class, deco_pipe.getUnlocalizedName()); GameRegistry.registerBlock(deco_pipe_rusted, ItemBlockBase.class, deco_pipe_rusted.getUnlocalizedName()); GameRegistry.registerBlock(deco_pipe_green, ItemBlockBase.class, deco_pipe_green.getUnlocalizedName()); diff --git a/src/main/java/com/hbm/inventory/recipes/AssemblerRecipes.java b/src/main/java/com/hbm/inventory/recipes/AssemblerRecipes.java index af36e0fbe..5b52a30fd 100644 --- a/src/main/java/com/hbm/inventory/recipes/AssemblerRecipes.java +++ b/src/main/java/com/hbm/inventory/recipes/AssemblerRecipes.java @@ -363,7 +363,7 @@ public class AssemblerRecipes extends SerializableRecipe { new ComparableStack(ModItems.upgrade_speed_3, 1), new ComparableStack(ModItems.upgrade_effect_3, 1), new OreDictStack(DESH.ingot(), 16), - new ComparableStack(ModItems.crystal_lithium, 4), + new ComparableStack(ModItems.ingot_cft, 2), new ComparableStack(ModItems.circuit, 16, EnumCircuitType.ADVANCED), }, 200); makeRecipe(new ComparableStack(ModItems.upgrade_overdrive_2, 1), new AStack[] { @@ -371,7 +371,7 @@ public class AssemblerRecipes extends SerializableRecipe { new ComparableStack(ModItems.upgrade_speed_3, 1), new ComparableStack(ModItems.upgrade_effect_3, 1), new OreDictStack(BIGMT.ingot(), 16), - new ComparableStack(ModItems.crystal_lithium, 8), + new ComparableStack(ModItems.ingot_cft, 6), new ComparableStack(ModItems.circuit, 16, EnumCircuitType.CAPACITOR_BOARD), }, 300); makeRecipe(new ComparableStack(ModItems.upgrade_overdrive_3, 1), new AStack[] { @@ -379,7 +379,7 @@ public class AssemblerRecipes extends SerializableRecipe { new ComparableStack(ModItems.upgrade_speed_3, 1), new ComparableStack(ModItems.upgrade_effect_3, 1), new OreDictStack(STAR.ingot(), 16), - new ComparableStack(ModItems.crystal_lithium, 16), + new ComparableStack(ModItems.ingot_cft, 8), new ComparableStack(ModItems.circuit, 16, EnumCircuitType.BISMOID), }, 500); diff --git a/src/main/java/com/hbm/inventory/recipes/PyroOvenRecipes.java b/src/main/java/com/hbm/inventory/recipes/PyroOvenRecipes.java index 456c8af93..384783d3f 100644 --- a/src/main/java/com/hbm/inventory/recipes/PyroOvenRecipes.java +++ b/src/main/java/com/hbm/inventory/recipes/PyroOvenRecipes.java @@ -92,7 +92,7 @@ public class PyroOvenRecipes extends SerializableRecipe { .out(new FluidStack(Fluids.SYNGAS, 1_000)).out(new ItemStack(Items.coal, 1, 1))); //soot from tar recipes.add(new PyroOvenRecipe(40) - .out(new FluidStack(Fluids.HYDROGEN, 250)).in(new OreDictStack(ANY_TAR.any(), 8)) + .out(new FluidStack(Fluids.HYDROGEN, 250)).in(new OreDictStack(ANY_TAR.any(), 4)) .out(new FluidStack(Fluids.CARBONDIOXIDE, 1_000)).out(DictFrame.fromOne(ModItems.powder_ash, EnumAshType.SOOT))); //heavyoil from coal recipes.add(new PyroOvenRecipe(100) diff --git a/src/main/resources/assets/hbm/textures/items/ingot_beskar_single_alt.png b/src/main/resources/assets/hbm/textures/items/ingot_beskar_single_alt.png new file mode 100644 index 0000000000000000000000000000000000000000..0f0a229dea8d30ed38d813db856a1c406b316d3d GIT binary patch literal 482 zcmV<80UiE{P)?>o_r9-P6KQ(?2`(B++M?W49;y9+??|*s!6432-bs~{KDTQs@IF5tXn$>E>U@#Cb0qu5M zM^QvNoyK)tJkR5JJR+qe3`6esJBdVsAPDe%Uwi=gzOOCIBA3hII1Z+1B81?4KBJUE z2!RlSIF7MxoAr84x7!u)XN*cI>h(I0$Ad5ox!rDrVfZXgCX>J2gg_}psZ^rTXlMZW z*2-?Tqf)7`SS*lIl1im841*|&ux%SDC7Dcy)9LhtJv-?2dSW`AayT5QR;w6>!R>ZK zYfYh0pja&8x-Of|hW&oecDu#0tglmOwOYDXtKoSbm&=80Hp^@_BcIQ6y|6oICgf^u^0ULLZYFL-tEviHZ;VL}0c+Fca=}^)z%)&3P=q8$Nx=Z% zoI@!USAf3nF~%f`h8^SmA6JkOM6N!NAMbq&C>EcAW9 znT6IGYb|M-egGjMP(#|f|1?ceN-+#WymP%?6ZQTMpXYfj1Ynr_{eIt=SV;jGV-gYZ qTI*QYCvl)nK}7uH@%U=`TlxXXQ>pB-RaO)L0000