Age | Commit message (Collapse) | Author |
|
change all Core mod items match with ID
Add Soldering function to Material list
put all Railcraft recipes from Core mot to GT
|
|
|
|
|
|
- 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
|
|
Provides an implementation-free API Texture factory an builder.
Deprecates gregtech.api.objects.GT_*Texture.java classes
Once all GregTech add-on will be migrated to the new implemnetation-free API,
changes to the implementation will not affect the add-on.
For now, this API allow rendering of in-world glow textures.
In-inventory/hand rendering of glow texture require implementation changes
that are postponed until no add-on uses the deprecated embedded implementation API.
|
|
Old textures rendering are kept in api/objects for backward compatibility.
The old textures rendering does not handle glow textures or independant
inventory tessellation. The old textures will only work with the old
GT_Renderer_Block class
New textures rendering with own tessellation in inventory and handling
of glow emisssive textures are moved to the api/render package. These must
not be used with the Old GT_Renderer_Block class or
it will crash with: Already Tessellating Exception from the Tessellator class
|
|
Normalize all repository files format
|
|
|
|
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
```
|
|
machine runs out of energy
|
|
added GT shadowmetal block, fixed bee crash from new TM
|
|
|
|
|
|
|
|
|
|
on the ability to craft them.
|
|
* Bee Definition Cleanup
Removed a Lot of boilerplate code, by using Consumers instead of Overrides
Signed-off-by: bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com>
* Made Use of Static imports
+ use "Color" class for better IDE integration & readability
+ parameterised some Generics
+ reroute some Method overloads
Signed-off-by: bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com>
* fixed an oversight
Signed-off-by: bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com>
* fixed a typo
Signed-off-by: bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This reverts commit 66ee3db890370b1a7843691eef2897931219cfb1.
|
|
This reverts commit 48ed31d7b7122b71cb6d37ccc81e6a4f4a33c9c5.
|
|
|
|
changed subversion to 33
|
|
Signed-off-by: bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com>
|
|
https://github.com/GTNewHorizons/NewHorizons/issues/5096
|
|
+added mica crop
+code improvements
Signed-off-by: bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com>
|
|
|
|
+added recipe
+removed unnessecary ", new Object[0]" for vargars methodes
Signed-off-by: bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com>
|
|
Signed-off-by: bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com>
|
|
https://github.com/GTNewHorizons/NewHorizons/issues/4285
|
|
|
|
|
|
Apatite, Ash and Fertilizer
|
|
|
|
|
|
change back to gendustry bees
|
|
# Conflicts:
# src/main/java/gregtech/loaders/misc/GT_BeeDefinition.java
|
|
+fixed NPE without certain Mods Loaded
|
|
|
|
|
|
|
|
|
|
added uev motor for uev centrifuge for infinity combs
spell fixings
|