aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common/items/ItemDrop.java
AgeCommit message (Collapse)Author
2021-08-29create a MOD ID for Core ModDreamMasterXXL
change all Core mod items match with ID Add Soldering function to Material list put all Railcraft recipes from Core mot to GT
2021-05-24feat(glow): iconset machines glow supportLéa Gris
- Add glow support for all sides and states of iconset machines (same as with basicmachines). Automated code cleanup with IDEA of: - Optiimise all imports (remove unused, sort) - Reorder all modifiers to the canonical preferred order (as stated in the Java Language Specification) - Add all missing @Override annotations
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-05-16fix bugsDreamMasterXXL
Naquadria combs give naquadah ore #6120 https://github.com/GTNewHorizons/GT-New-Horizons-Modpack/issues/6120
2020-05-10finishing hee bees so farDreamMasterXXL
2020-05-10more HEE bees and some fixesDreamMasterXXL
2018-09-23remove unused codeDream-Master
2018-09-23change forestry squeezer recipesDream-Master
2018-09-23fix squeezer recipesDream-Master
2018-09-22add forestry squeezer recipes to dropsDream-Master
2018-09-22add more comb recipesDream-Master
add drop recipes
2018-09-15optimize importsDream-Master
2018-09-15fix derpDream-Master
2018-09-15Add drops to gtDream-Master