aboutsummaryrefslogtreecommitdiff
path: root/src/main/java
AgeCommit message (Collapse)Author
2021-05-05Remove duplicate and erroneous recipe for the base schematicPrometheus0000
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-05Merge pull request #522 from Prometheus0000/styreneMartin Robertz
Re-add styrene recipes
2021-05-05Add water to bisphenol MB recipePrometheus0000
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-05Re-add styrene recipesPrometheus0000
2021-05-04Scanner info for the output hatchrepo_alt
2021-05-01Merge pull request #519 from Prometheus0000/plascrete_fixMartin Robertz
Fix plascrete needing a pickaxe and having too much hardness and BR
2021-05-01Change to 1.5Prometheus0000
2021-05-01Fix plascrete needing a wrench and having too much hardness and BRPrometheus0000
2021-05-01Change hardness from 5 to 0.8Prometheus0000
2021-04-29fix(charcoalpit): stop the igniter from capturing right-click (#517)Léa Gris
The Charcoal-Pit Igniter has no GUI but was needlessly capturing player's right-clicks. It was an inconvenience when right-clicking on the pit's ceiling because when reaching the Igniter, the right-click was captured and player needed to sneak to place a log block under the Igniter.
2021-04-29Merge pull request #513 from Prometheus0000/oredictMartin Robertz
Adds oredicting of synthetic rubber to conveyors and standardizes pumps
2021-04-27Remove debug print statement in ScanPipesJason Mitchell
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-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-26Rescan for oil fields after chunk range config change.Glease
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
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-24Merge pull request #505 from GTNewHorizons/fix_itemblock_brightnessMartin Robertz
fix(rendering): itemblocks inventory brightness and orientation
2021-04-24cleanup(todo): remove done todo tasks mentionsLéa Gris
WAILAPlugins has been updated to the new solar boiler interface. Deprecated methods are left behind for backward compat with older plugins. Rebase from experimental
2021-04-24Optimize config codeGlease
1. Reuse same config across all solar boilers of the same class 2. Remove shading of config field in subclass Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
2021-04-24fixes(solarboiler): integer math, waila plugin interface, configLéa Gris
- Fix integer math of getProductionPerSecond by moving the multiplier ahead. - Fix and deprecate WAILAPlugins interface by returning ratio adjusted values. - Simplify the inner Config class.
2021-04-24impr(solarboilers): abstracted the configLéa Gris
2021-04-24fix(solarboilers): fixes and QOL improvementsLéa Gris
- Change run-time counter from seconds to ticks since solar boilers are ticking every 10 ticks, or 0.5 second. - Prevent run-time counter from overflowing Integer.MAX_VALUE ticks. - Fix missing check of available steam before pushing to output. - Fix the cool-down rate that broke in GTNH 2.1.0.6. - Make the solar boilers entirely configurable.
2021-04-24impr(solarboilers): configurable solar boilersLéa Gris
2021-04-24refactor(solarboilers): reorganise cleanup factorise codeLéa Gris
2021-04-24Fix solar boiler heat up speedGlease
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
2021-04-21Update GT_MachineRecipeLoader.javaElisis
Fix the rest of https://github.com/GTNewHorizons/GT-New-Horizons-Modpack/issues/7798
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-14Fix waila display for solar boilersGlease
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
2021-04-13Fix solar boiler outputting to wrong directionGlease
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
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-10Fix ME output busGlease
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
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-03Polished GT_MetaTileEntity_Boiler (#492)bartimaeusnek
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>