aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api
AgeCommit message (Collapse)Author
2021-05-21feat(render): first set of glow texturesLéa Gris
Add glowing textures to: - Qantum or Super Tanks and Chests - Active Bronze and Bricked Blast Furnaces - Active Magical Absorber Top - Fusion Reactor Control Computer Screen - Active Yellow Glass Fusion Casing used on: - Active Fusion Reactor Controller and Hatches - Plasma Generator - Lightning Rod - Computer Screen Cover
2021-05-21feat(render): glowing texture rendererLéa Gris
Implement a glowing texture renderer class Add option to not render glowing textures
2021-05-21Merge pull request #543 from GTNewHorizons/patch-transformer-storageMartin Robertz
Actually increase the EU storage cap
2021-05-21Merge pull request #540 from GTNewHorizons/net-optimizeMartin Robertz
Get rid of intermediate byte array while sending packet
2021-05-21Increase the EU cap a bit moreGlease
2021-05-21Actually increase the EU storage capGlease
2021-05-20Fix translations from resourcepacks.Usernm
Without this fix gregtech always use localised names from GregTech.lang in minecraft root folder. With this fix you can change localisations on fly using resourcepacks.
2021-05-19Get rid of intermediate byte array while sending packetGlease
2021-05-17Increase transformer eu storage capGlease
2021-05-16Dirty fix for ore drill not mining certain oreGlease
2021-05-16Generate EBF recipe for calcium ingotGlease
2021-05-15Allow client to proactively request fluid display updatesGlease
Currently client will only request update on blocks being looked at. Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
2021-05-13Merge pull request #493 from johnch18/bufferFix2Martin Robertz
Made higher tier buffers attempt to move multiple stacks/tick
2021-05-13Merge pull request #515 from GTNewHorizons/files_formatMartin Robertz
Normalize all repository files format
2021-05-12Removed redundant loop.charles
2021-05-09Merge pull request #531 from Prometheus0000/dimethMartin Robertz
Add LCR dimethylbenzene recipe
2021-05-08Also fix assembler one while at itPrometheus0000
2021-05-08Fix help message morePrometheus0000
2021-05-08Fix help message thing for LCR recipesPrometheus0000
2021-05-08Fix name of americiumPrometheus0000
2021-05-06Actually make the buffer sort config workGlease
2021-05-05Sets shadowiron and shadowsteel to centrifuge onlyPrometheus0000
I couldn't figure out how to lower the time, as it's auto-generated somehow Add spaces to the names. This is just visual Change Shadow to Shadow Metal to help differentiate the three. Also just visual
2021-05-04Scanner info for the output hatchrepo_alt
2021-05-01Change to 1.5Prometheus0000
2021-05-01Change hardness from 5 to 0.8Prometheus0000
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-26fix(multiblockbase): until the muffler has a valid tileLéa Gris
address issue [NPE in GT_MetaTileEntity_MultiBlockBase.java:314 until the muffler has a valid tile #7454](https://github.com/GTNewHorizons/GT-New-Horizons-Modpack/issues/7454)
2021-04-26fix(hidecover) unchained posttick caused missed texture and size changeLéa Gris
Add missing chaining of the `onPostTick` event handler to parent class. `GT_MetaPipeEntity_(Cable|Pipe|Fluid)` classes were not forwarding the `onPostTick` event handler to their parent `MetaPipeEntity` class, so pipes were not rendering the change unless another machine tile which did properly chain the event handler to its parent (like `GT_MetaTileEntity_TieredMachineBlock`) was present in same chunk.
2021-04-21fix(rendering): itemblocks inventory brightness and orientationLéa Gris
- Fix itemblock brightness and orientation to be exactly same as vanilla blocks in inventory. - Revert machine front facing to the brighter left side as it eases differentiating them. - Optimise inventory itemblock rendering to issue a draw quads only once for the entire block, rather than for each side.
2021-04-12Fixed algorithm, updated flavor text.charles
2021-04-10Merge pull request #499 from GTNewHorizons/revertMartin Robertz
Revert "Fix return value for addOutput(fluid)"
2021-04-10Revert "Fix return value for addOutput(fluid)"Johann Bernhardt
This reverts commit 95fb72834838aa365afd4c418b7b70c66644ffc2.
2021-04-10Optimize addOutputGlease
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
2021-04-04fix(rendering): multiple rendering fixes and refactor (#494)Léa Gris
* fix(rendering): multiple rendering fixes and refactor - Fix rendering gregtech machines in inventory with correct orientation and lighting. - Fix rendering of pipes connected through covers, no longer z-fight at a distance. - Fix updating of textures when un/holding a soldering-iron. - Refactor of the GT_Renderer_Block class with properly named constants replacing raw literals.
2021-04-03Merge branch 'bufferFix' of https://github.com/johnch18/GT5-Unofficial into ↵charles
bufferFix2 Fixed merge that I thought I already had fixed
2021-04-03Made it so that higher tier buffers try to move multiple stacks/tickcharles
2021-04-03Merge pull request #486 from johnch18/mccoverfixMartin Robertz
Made machine control covers disable themselves upon power loss
2021-04-03Merge pull request #487 from GTNewHorizons/boiler-cleanupMartin Robertz
Ensure conservation of masses in boilers
2021-04-03Partial commit, needed sleepcharles
2021-04-02Fixed improper loading of bSortStacks from NBT, *should* fix backwards ↵charles
compat issue.
2021-04-03Ensure conservation of masses in boilersGlease
Unified single block boiler logic Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
2021-04-02Added scanning data reflecting if device shut down.charles
Added notification to player that device shut down. Added scanning data reflecting if the device was disabled by soft mallet, cover, etc.
2021-04-02Cleaned up some code and fixed translation issue.charles
2021-04-02Removed unecessary else branch.charles
2021-04-02Added Soldering Iron toggle behavior for sorting using shift+right-click.charles
Sorting defaults to disabled in order to not break existing builds.
2021-04-02Fixed stupid error I madecharles
Set groundwork for configuring with soldering iron.
2021-04-02Added sorting of buffer inventories using code from the input bus class.charles
2021-04-01Prevent multiple stack in input slots even if input filter is disabled (#489)Glease
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
2021-03-31Fix return value for addOutput(fluid)Johann Bernhardt