aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/loaders
AgeCommit message (Collapse)Author
2021-06-03fixed tabs mixed with spaceboubou_19
2021-06-03Update GT_Worldgenloader.javaMartin Robertz
formarting
2021-06-03add(GT)add small Tungsten Ores to Venus and IODreamMasterXXL
2021-06-03Merge pull request #544 from GTNewHorizons/remove-pure-tungsten-europeMartin Robertz
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-24Adds 9x recipes for not using tiny dustsPrometheus0000
Radon LCR-only recipe (ignore previous commit) Biodiesel Polycaprolactam Indium Phtalic acid 3,3-dichlorobenzidine CO and CO2
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-23Add a 9x version of the ghast tear saltwater recipePrometheus0000
2021-05-23Update GT_Worldgenloader.javabotn365
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 #532 from Prometheus0000/transMartin Robertz
Change UV transformer cable to bedrockium so you can actually make it in UV
2021-05-13Allow annealed againPrometheus0000
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-13Change UV transformer cable to bedrockium so you can actually make it inPrometheus0000
UV Change anycopper to copper for LV one to reduce confusion, and because I doubt anyone would use annealed Change size from x2 or x4 to x1, because it doesn't make sense for them to be larger, they're not high-amp transformers, they send the same amount of amps as the earlier tiers
2021-05-13Merge pull request #515 from GTNewHorizons/files_formatMartin Robertz
Normalize all repository files format
2021-05-09Merge pull request #531 from Prometheus0000/dimethMartin Robertz
Add LCR dimethylbenzene recipe
2021-05-08Forgot to adjust recipe time/EUPrometheus0000
2021-05-08Add LCR dimethylbenzene recipePrometheus0000
2021-05-08Fix name of americiumPrometheus0000
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-05-06Remove useless tiny/small mixer recipesPrometheus0000
It was done in a neat way though
2021-05-05Merge pull request #525 from Prometheus0000/cardMartin Robertz
Remove duplicate and fix existing sensor card recycling recipe
2021-05-05Remove duplicate and fix existing sensor card recycling recipePrometheus0000
Well, 'fix' is more like, 'be fair'
2021-05-05Merge pull request #524 from Prometheus0000/BpWMartin Robertz
Add water to bisphenol MB recipe
2021-05-05Add water to bisphenol MB recipePrometheus0000
2021-05-05Re-add styrene recipesPrometheus0000
2021-04-29Merge pull request #513 from Prometheus0000/oredictMartin Robertz
Adds oredicting of synthetic rubber to conveyors and standardizes pumps
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-04-27fix(logspam): spam unification typos (#514)Léa Gris
Address issue: [Gregtech.log spam with 6724 lines of "Unknown Key for Unification, Typo?" #7866](https://github.com/GTNewHorizons/GT-New-Horizons-Modpack/issues/7866) - Fix the logic for logging possible Typos (prioritise least cost) - Improve reverse recipes by excluding ore names of tools early to prevent unexpected and un needed unification lookups - Turn off unification typo logging in reverse recipes Reduced unification typo spam from 6724, down to 11 remaining entries: ```none circuitGood circuitData circuitElite circuitMaster circuitUltimate circuitSuperconductor gearSteel gearAluminium gearStainlessSteel gearTitanium gearTungstenSteel ```
2021-04-26Adds oredicting of synthetic rubber to conveyors and standardizes pumpsPrometheus0000
2021-04-26fix(exception): class not found is normal when galactic greg absent (#512)Léa Gris
Remove useless stacktrace by the worldgen loader when Galactic Greg is absent.
2021-04-21Update GT_MachineRecipeLoader.javaElisis
Fix the rest of https://github.com/GTNewHorizons/GT-New-Horizons-Modpack/issues/7798
2021-03-30Merge https://github.com/GTNewHorizons/GT5-Unofficial into mccoverfixcharles
Fixing my sh*t because apparently I can't use git
2021-03-30Revert "Added Naquadria Fusion Reactor recipe."charles
This reverts commit 5bb2ed3deb2f95765fc2467da5ba98e651e8e44c.
2021-03-30Revert "Added T3 Molten Naquadria Recipe to Fusion Reactor."charles
This reverts commit 1d2a62aeda030eb751844a5f1ca86158220f130e. Cleaning Commits
2021-03-30Revert "Added Naquadria Fusion Reactor recipe."charles
This reverts commit 5bb2ed3deb2f95765fc2467da5ba98e651e8e44c. Cleaning commits
2021-03-30Made it so that machine control covers disable themselves when thecharles
machine runs out of energy
2021-03-28Merge pull request #483 from GTNewHorizons/magic-gen-buffMartin Robertz
Reduce price of magic generators
2021-03-28Reduce price of magic generatorsGlease
Basically make the recipes use T+1 circuits/metal instead of T+2. EV magic generator will additionally require tungsten steel plates to prevent it from becoming too cheap. Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
2021-03-26Merge pull request #480 from GTNewHorizons/patch_stone_coverMartin Robertz
fix(covers): stone plate cover block texture selection
2021-03-26fix(covers): clay plate cover block texture selectionLéa Gris
Add the ore dicitionary name `blockClay` to the `minecraft:clay` block, so it can be selected with prefix `block` and material `clay` when registering the clay plate cover's block texture.
2021-03-26fix(covers): glowstone plate cover block texture selectionLéa Gris
Add the ore dicitionary name `stoneGlowstone` to the `minecraft:glowstone` block, so it can be selected with prefix `stone` and material `glowstone` when registering the Glowstone plate cover's block texture.
2021-03-26fix(covers): nether quartz plate cover block texture selectionLéa Gris
Add the ore dicitionary name `blockNetherQuartz` to the `minecraft:quartz_block` block, so it can be selected with prefix `block` and material `NetherQuartz` when registering the NetherQuartz plate cover's block texture.
2021-03-26fix ingot to wire timebotn365