aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/objects/MaterialStack.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 ```
2017-10-07Merge branch 'patch-1' of https://github.com/Ethryan/GT5-Unofficial into ↵Technus
experimental With changes
2017-10-06Small bugfixEthryan
2017-10-06Messy but it works i thinkEthryan
2017-10-06Small FixEthryan
2017-10-06Chemicals 3Ethryan
2017-10-06Chemical 2Ethryan
try2
2017-10-01Optimize imports, optimize random number generation, make turbines loose ↵Technus
0.75 or normal durability in loose fitting mode.
2017-06-23Cherry PickJohannes Gäßler
41b93ae85dfe8e15f7d46a09cb49b65991901fed RedAlloy, TungstenCarbide now have the correct formula. Changed the formula of Lignite, it no longer contains Ash Fixed the algorithm for determining whether or not to put brackets around a partial Material.
2017-06-01Removed debugging prints accidentally left in the previous commitJohannes Gäßler
2017-06-01Fixed MaterialStack String representations sometimes missing bracketsJohannes Gäßler
2017-05-22some fixesDream-Master
2017-05-20Fixed MaterialStack String representations sometimes missing bracketsJohannes Gäßler
2016-08-15Bugfixes 10Muramasa
2016-08-14Bugfixes 9Muramasa
2016-08-14Bugfixes 3/2/1 fix: Remove commented codeMuramasa
2016-08-14Bugfixes 2Muramasa
2015-10-21Reformat codeShawn Buckley
2015-10-21Move source filesShawn Buckley