aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/objects/ItemData.java
AgeCommit message (Collapse)Author
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 ```
2016-09-25Cleanup, disable auto TE recipes with config and fixesMuramasa
2016-09-24Update with exp changesMuramasa
2016-09-15Update Part 1Muramasa
2016-08-17InitialMuramasa
Fixed Materials limitation Added ability to add Materials via a config Added ability to change all properties of a Material via a config
2016-08-14Bugfixes 9Muramasa
2016-08-13HashMap > ConcurrentHashMap & String varsMuramasa
2015-10-21Reformat codeShawn Buckley
2015-10-21Move source filesShawn Buckley