aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common/net
AgeCommit message (Collapse)Author
2021-05-19Get rid of intermediate byte array while sending packetGlease
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-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 ```
2018-12-13Fix flask crash on serverDimach
2018-12-11cherry pick 0beea9037cd8ff7a899c14c53d6b9a381c22f42cDimach
Add volumetric flask. (#1500)