aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/enums/Dyes.java
AgeCommit message (Collapse)Author
2022-01-06Add in game GUI to configure client preference (#852)Glease
* Add in game GUI to configure client preference * Fix backslash
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 ```
2020-03-16Refactored fixed 2 code smells in dyesbartimaeusnek
Signed-off-by: bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com>
2016-12-17Change dyes again and make machines use the GT Dyes instead of Forge Dyes. ↵Technus
(makes gui looks like rendered block)
2016-12-17kekTechnus
2016-09-22Remove null checksMuramasa
2015-10-21Reformat codeShawn Buckley
2015-10-18Move source directoryShawn Buckley