aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/loaders/oreprocessing
AgeCommit message (Collapse)Author
2021-08-29create a MOD ID for Core ModDreamMasterXXL
change all Core mod items match with ID Add Soldering function to Material list put all Railcraft recipes from Core mot to GT
2021-08-29bundle all Railcraft recipes into a new recipe methodeDreamMasterXXL
2021-08-26rework(RC Rails)DreamMasterXXL
buff recipes for rebars, tracks and rails add circuit support to Bender
2021-08-19fix https://github.com/GTNewHorizons/GT-New-Horizons-Modpack/issues/8425DreamMasterXXL
add carbon alloy plates recipes to make reinforeced Glass
2021-08-08add integrated circuit for dye recipeGlodBlock
2021-07-15Removed useless array creation in most #copy methods by changing them to ↵TimeConqueror
#copyOrNull variant with single parameter.
2021-06-14Formatting changePrometheus0000
2021-06-11Move log centrifuging for methane from GT++, also add circuitPrometheus0000
2021-06-03Merge pull request #548 from Prometheus0000/9xMartin Robertz
Recipes for full dusts
2021-05-24Add missing x4 cable recipes, so you can use full dustsPrometheus0000
2021-05-24feat(glow): iconset machines glow supportLéa Gris
- Add glow support for all sides and states of iconset machines (same as with basicmachines). Automated code cleanup with IDEA of: - Optiimise all imports (remove unused, sort) - Reorder all modifiers to the canonical preferred order (as stated in the Java Language Specification) - Add all missing @Override annotations
2021-05-23It's ugly, but it works.Jason Mitchell
2021-05-21feat(render): implementation-free api texture factoryLéa Gris
Provides an implementation-free API Texture factory an builder. Deprecates gregtech.api.objects.GT_*Texture.java classes Once all GregTech add-on will be migrated to the new implemnetation-free API, changes to the implementation will not affect the add-on. For now, this API allow rendering of in-world glow textures. In-inventory/hand rendering of glow texture require implementation changes that are postponed until no add-on uses the deprecated embedded implementation API.
2021-05-21fix(render): move new textures rendering to new packageLéa Gris
Old textures rendering are kept in api/objects for backward compatibility. The old textures rendering does not handle glow textures or independant inventory tessellation. The old textures will only work with the old GT_Renderer_Block class New textures rendering with own tessellation in inventory and handling of glow emisssive textures are moved to the api/render package. These must not be used with the Old GT_Renderer_Block class or it will crash with: Already Tessellating Exception from the Tessellator class
2021-05-13Merge pull request #528 from Prometheus0000/remove_uselessMartin Robertz
Remove useless recipes in GT5U involving tiny/small dusts
2021-05-13Remove commented out codePrometheus0000
2021-05-06Removes autogeneration of tiny dust to nugget smelting recipe forPrometheus0000
non-EBF materials Does anyone use this?
2021-05-06Removes autogenerating of alloy smelter tiny/small dust recipes forPrometheus0000
non-EBF materials It seems you can't use the normal size ones in the AS to make ingots, but does anyone care?
2021-05-06Removes autogenerating of EBF tiny/small dust recipesPrometheus0000
2021-04-27fix(textfiles): add missing neline at end of filesLéa Gris
git and diff tools will complain if text file does not end with a newline. Fixed all text files in the repository with Linux bash shell: ```sh git ls-files -z | while IFS= read -rd '' f; do mime="$(file --brief --mime "$f")"; if [ -z "${mime##text/*}" ]; then tail -c1 "$f" | read -r _ || printf '\n' >>"$f"; fi; done ```
2021-03-26fix ingot to wire timebotn365
2021-03-19fix(platecovers): selection of blockLéa Gris
Search different prefixes as fall-back to find a proper block.
2021-03-14fix(ProcessingPlate): missed BUFFERED recipes bitsLéa Gris
- Add missing BUFFERED recipes bits - More code cleanup
2021-03-14minor: javadoc rephraseLéa Gris
2021-03-14cleanup(registerCover): factorise and commentLéa Gris
2021-03-14fix(render): texture for covers of block materialLéa Gris
- Copy the block texture to render covers made of a block's material - Fix and refactor lint and tidy the whole ProcessingPlate class (no side-effect detected)
2021-03-13fix(rendering): cover dumb block teture on bottom faceLéa Gris
Render the bottom face of covers made of a dumb block, the same orientation as the referrence dumb block.
2021-03-07fix all fineWire amountbotn365
fix all instences where you only get 4 fine wire/ingot instead of 8 when there is no wire version of that material
2021-03-05Makes higher tier materials give more cellsPrometheus0000
2021-01-17More removal of commented out code, small formatting adjustmentsJason Mitchell
2021-01-07Merge branch 'experimental' into GT-ToolsMartin Robertz
2021-01-03fix(GT)HArdhammer and SoftmalletDreamMasterXXL
get HardHammer and Soft Mallet working in Assembler recipes re add crafting recipes from tool parts (cherry picked from commit af10b10e360ee9bdabc68f949dd1232b10c695a7)
2021-01-021) Remove mAddGTRecipesToIC2Machines (stolen from @Glease)Jason Mitchell
2) Batch (most) recipe map removals and additions (significant speedup) 3) Modernize old java constructs --> java8 (in the files touched)
2021-01-02remove shpeless recipes and add assembler mv onesDreamMasterXXL
(cherry picked from commit d8d867c7fa980beb19de204504284c09b9b6e4bd)
2021-01-02reactivate GT ToolsDreamMasterXXL
(cherry picked from commit 520156e27469c936572064f6839da2ff442a488f)
2020-09-30Fix AE2 compat to be independant at runtimebartimaeusnek
Signed-off-by: bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com>
2020-09-02GT p2p tunnel was added to AE itselfrepo_alt
2020-07-25fix(gregtech)derp }DreamMasterXXL
2020-07-25feat(Gregtech)add more Autoclave recipesDreamMasterXXL
add new Autoclave recipes using molten void and a output of 100% Adjust distilled water amount crystal #6405 https://github.com/GTNewHorizons/GT-New-Horizons-Modpack/issues/6405 (cherry picked from commit 0d5949ce84caa55d5721b99e9cbc0c3ceb231b1e)
2020-07-24fix(Gregtech)Obsidian recipeDreamMasterXXL
remove unbalanced Obsidian recipes [Cutting Machine] Obsidian Plate (not profitable) #6430 https://github.com/GTNewHorizons/GT-New-Horizons-Modpack/issues/6430
2020-05-31Centrifuging Rubber Wood only outputs Methane Gas #5243DreamMasterXXL
https://github.com/GTNewHorizons/GT-New-Horizons-Modpack/issues/5243
2020-04-10Void miner adjustments (#262)bartimaeusnek
* Added all Ores to Voidminer in DeepDark + removed Infinity Ore Signed-off-by: bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com> * renormalize line endings Signed-off-by: bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com>
2020-03-15try to add Basalt and Marble platesDream-Master
2020-03-08Basalt GT covers #5683Dream-Master
https://github.com/GTNewHorizons/NewHorizons/issues/5683
2020-03-08Add Basalt CoverDream-Master
2020-03-02Centrifuging Rubber Wood only outputs Methane Gas #5243Dream-Master
2020-02-19No way to turn amethyst dust into amethyst. #5596Dream-Master
https://github.com/GTNewHorizons/NewHorizons/issues/5596
2020-02-15removed unused importsDream-Master
changed subversion to 33
2020-01-03Centrifuging Rubber Wood only outputs Methane Gas #5243Dream-Master
https://github.com/GTNewHorizons/NewHorizons/issues/5243
2019-12-21[Suggestion] Add recipe for making wafers from high-tier doped wafers #5176Dream-Master
https://github.com/GTNewHorizons/NewHorizons/issues/5176 (cherry picked from commit 3389ad58b53cde8822cadb86e23e6ec0e9810e9b)