Skip to content
This repository was archived by the owner on May 26, 2024. It is now read-only.

New multis 3 #93

Merged
merged 53 commits into from
Jan 22, 2022
Merged
Changes from 1 commit
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
e64595b
Add Multiblock Forge Hammer.
draknyte1 Dec 21, 2021
ccdb05c
Re-added XL Turbines.
draknyte1 Dec 22, 2021
9e9d81a
Finished work on XL turbines.
draknyte1 Dec 22, 2021
73091cf
Adjust XL Plasma Turbine recipe handling.
draknyte1 Dec 22, 2021
4577024
Add shapeless recipes to clear tanks.
draknyte1 Dec 22, 2021
c35cb87
Made tank recipes not shapeless.
draknyte1 Dec 22, 2021
fc8239f
Tweak MK4 Fusion.
draknyte1 Dec 26, 2021
d8dcc4c
Added Solar Tower & Solar Heater.
draknyte1 Jan 5, 2022
e2e6a4b
Added Asm, Screenshots and World to .gitignore.
draknyte1 Jan 6, 2022
ad828a0
Added Simple Washer mode to Industrial Wash Plant.
draknyte1 Jan 6, 2022
cdb7ff1
Finished work on multiblock Molecular Transformer.
draknyte1 Jan 6, 2022
e220989
Fix Auto-Generated ABS recipes sometimes containing two circuits.
draknyte1 Jan 6, 2022
5dda027
Made Chromatic Glass less eye-rapey.
draknyte1 Jan 6, 2022
a349f21
Finish work on the Elemental Duplicator.
draknyte1 Jan 7, 2022
c87d572
Updated Data Orb Repository tooltip.
draknyte1 Jan 7, 2022
7d0d512
Added new overlay for the Data Orb Repository.
draknyte1 Jan 7, 2022
969535e
Added some new overlays.
draknyte1 Jan 7, 2022
dfbb036
Renamed Data Orb Overlay.
draknyte1 Jan 7, 2022
5e307cc
Rewrote and readded Bronze/Advanced Workbenches using GT Meta Tile sy…
draknyte1 Jan 7, 2022
8b6ce65
Added recipes for the GT4 Workbenches.
draknyte1 Jan 7, 2022
6e865ed
Ported some GT4 content:
draknyte1 Jan 9, 2022
09ff0c1
Added more GT4 content:
draknyte1 Jan 9, 2022
2b9fea7
Improve redstone detection.
draknyte1 Jan 9, 2022
83e128a
Partially implemented Computer Cube.
draknyte1 Jan 9, 2022
7ba4c28
update dependencies
bombcar Jan 12, 2022
04bc625
Merge branch 'New-Multis-2' of https://github.com/GTNewHorizons/GTplu…
draknyte1 Jan 12, 2022
9d1e7b5
Fix https://github.com/GTNewHorizons/GTplusplus/issues/87.
draknyte1 Jan 12, 2022
ecd9b0b
Basically finished work on Reactor Simulator.
draknyte1 Jan 13, 2022
cb0277e
Hopefully make Wireless Chargers more responsive.
draknyte1 Jan 13, 2022
7477534
Change Crop Manager power usage based on feedback.
draknyte1 Jan 13, 2022
74e7627
Fix Computer Cube GUI.
draknyte1 Jan 14, 2022
b674474
Added missing recipes for Rotors and Fine Wire.
draknyte1 Jan 15, 2022
35ea58b
Added ability for GT++ Plates and Foils to be used as covers.
draknyte1 Jan 15, 2022
a69727a
Added recipes for Generator Array Controller, Multi Forge Hammer, Mul…
draknyte1 Jan 15, 2022
92a10fc
Added recipes for Solar Tower.
draknyte1 Jan 15, 2022
bee14e9
Added recipes for the XL Turbines.
draknyte1 Jan 15, 2022
10ff684
Changed Forge Hammer Meta ID to avoid conflicts.
draknyte1 Jan 15, 2022
4c52ce6
Add Average I/O stats to PSS.
draknyte1 Jan 16, 2022
84d22c4
Made Avg IO on PSS a little smarter.
draknyte1 Jan 16, 2022
48a4155
Extend PSS fake maxProgresstime to trick the system
Glease Jan 16, 2022
4ead42d
Added Recipe for Computer Cube MKII, Turbine Shaft, Rotor Assembly & …
draknyte1 Jan 16, 2022
e684491
Added GT4 Redstone Circuit Block.
draknyte1 Jan 19, 2022
d3030fa
Added textures for Redstone Circuit Block.
draknyte1 Jan 19, 2022
71fe52e
Added recipes for Redstone Circuit Block.
draknyte1 Jan 19, 2022
4f3cdc7
Fixed Industrial Forge Hammer structure check.
draknyte1 Jan 20, 2022
3caaa02
Fixed broken multiblock tooltips.
draknyte1 Jan 20, 2022
d91ba37
Improved Matter Fabricator recipes.
draknyte1 Jan 20, 2022
247a07a
Add way to make Sunnarium without MT.
draknyte1 Jan 20, 2022
8f28cbb
Did MT stuff.
draknyte1 Jan 21, 2022
0ecbbe8
Updated recipe for compressed glowstone.
draknyte1 Jan 21, 2022
7ede7c7
Merge branch 'master' of https://github.com/GTNewHorizons/GTplusplus …
draknyte1 Jan 21, 2022
03a6ace
Added CCC dep.
draknyte1 Jan 21, 2022
7e3d131
Fix fluid extraction recipes. Fixes https://github.com/GTNewHorizons/…
draknyte1 Jan 22, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Made tank recipes not shapeless.
draknyte1 committed Dec 22, 2021
commit c35cb876ff65825ae65485e59d87994e7e74c97e
4 changes: 2 additions & 2 deletions src/main/java/gtPlusPlus/core/recipe/RECIPES_Machines.java
Original file line number Diff line number Diff line change
@@ -931,7 +931,7 @@ private static void runModRecipes(){
GregtechItemList.GT_FluidTank_LuV, GregtechItemList.GT_FluidTank_ZPM, GregtechItemList.GT_FluidTank_UV,
GregtechItemList.GT_FluidTank_MAX};
for (GregtechItemList aTank : aTanks) {
RecipeUtils.addShapelessGregtechRecipe(
RecipeUtils.addShapedGregtechRecipe(
aTank.get(1), null, null,
null, null, null,
null, null, null,
@@ -1009,7 +1009,7 @@ private static void runModRecipes(){
// Allows clearing stored fluids.
GregtechItemList[] aTanks = new GregtechItemList[] {GregtechItemList.GT_FluidTank_ULV, GregtechItemList.GT_FluidTank_LV, GregtechItemList.GT_FluidTank_MV, GregtechItemList.GT_FluidTank_HV};
for (GregtechItemList aTank : aTanks) {
RecipeUtils.addShapelessGregtechRecipe(
RecipeUtils.addShapedGregtechRecipe(
aTank.get(1), null, null,
null, null, null,
null, null, null,