aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common
AgeCommit message (Collapse)Author
2021-05-21Merge pull request #540 from GTNewHorizons/net-optimizeMartin Robertz
Get rid of intermediate byte array while sending packet
2021-05-19add importskorneel vandamme
2021-05-19fix-plasma-turbine-displaybotn365
fix #7799
2021-05-19Get rid of intermediate byte array while sending packetGlease
2021-05-18Fix NPE in GT_ClientGlease
2021-05-16Dirty fix for ore drill not mining certain oreGlease
2021-05-15Merge pull request #534 from GTNewHorizons/safe-mode-gui-fixMartin Robertz
Fix machine controller gui not being properly initialized
2021-05-15Fix machine controller gui not being properly initializedGlease
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
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-08Fix name of americiumPrometheus0000
2021-05-08Fix soft mallet mishandling vanilla hopperGlease
2021-05-05Remove duplicate and erroneous recipe for the base schematicPrometheus0000
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-01Fix plascrete needing a wrench and having too much hardness and BRPrometheus0000
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-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-26Rescan for oil fields after chunk range config change.Glease
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
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-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-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-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-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-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-30Added GUI interface for cover "Safe Mode"charles
Added tracking of last player to access a cover for future notification purposes.
2021-03-30Merge https://github.com/GTNewHorizons/GT5-Unofficial into mccoverfixcharles
Fixing my sh*t because apparently I can't use git
2021-03-30Made it so that machine control covers disable themselves when thecharles
machine runs out of energy
2021-03-25Merge pull request #479 from GTNewHorizons/disassembler_fixesMartin Robertz
Some Disassembler related fixes:
2021-03-25Some Disassembler related fixes:bartimaeusnek
#7654 #7586 #7676
2021-03-25Enabled autoloading for oil drillsrepo_alt
Fixed chunk coordinates for self-loaded machine (in the first session)
2021-03-23Merge pull request #473 from GTNewHorizons/patch_inner_side_detectionMartin Robertz
fix(rendering): brightness of no-z-fighting offset faces