Age | Commit message (Collapse) | Author |
|
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
|
|
Change UV transformer cable to bedrockium so you can actually make it in UV
|
|
|
|
Remove useless recipes in GT5U involving tiny/small dusts
|
|
|
|
UV
Change anycopper to copper for LV one to reduce confusion, and because I
doubt anyone would use annealed
Change size from x2 or x4 to x1, because it doesn't make sense for them
to be larger, they're not high-amp transformers, they send the same
amount of amps as the earlier tiers
|
|
Made higher tier buffers attempt to move multiple stacks/tick
|
|
Normalize all repository files format
|
|
|
|
Add LCR dimethylbenzene recipe
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
non-EBF materials
Does anyone use this?
|
|
non-EBF materials
It seems you can't use the normal size ones in the AS to make ingots,
but does anyone care?
|
|
|
|
It was done in a neat way though
|
|
|
|
Remove duplicate and erroneous recipe for the base schematic
|
|
|
|
Remove duplicate and fix existing sensor card recycling recipe
|
|
Well, 'fix' is more like, 'be fair'
|
|
Add water to bisphenol MB recipe
|
|
Re-add styrene recipes
|
|
|
|
I couldn't figure out how to lower the time, as it's auto-generated
somehow
Add spaces to the names. This is just visual
Change Shadow to Shadow Metal to help differentiate the three. Also just
visual
|
|
|
|
|
|
Fix plascrete needing a pickaxe and having too much hardness and BR
|
|
|
|
|
|
|
|
The Charcoal-Pit Igniter has no GUI but was needlessly capturing player's
right-clicks. It was an inconvenience when right-clicking on the pit's ceiling
because when reaching the Igniter, the right-click was captured and player
needed to sneak to place a log block under the Igniter.
|
|
Adds oredicting of synthetic rubber to conveyors and standardizes pumps
|
|
|
|
Convert to png all .png files that were not in image/png format using Linux shell
```sh
git ls-files -z |
while IFS= read -rd '' f; do
mime="$(file --brief --mime "$f")";
if [ -z "${f%%*.png}" ] && [ -n "${mime##image/png;*}" ]; then
convert "$f" /tmp/a.png;
cat /tmp/a.png >"$f";
fi;
done;
rm -f -- /tmp/a.png
```
|
|
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
```
|
|
Normalise all these json files with jq
Used Linux shell
```sh
find ./src -type f \( -iname '*.mcmeta' -o -iname '*.info' \) -execdir bash -c '
for f; do
if jq "." "$f" >/tmp/a.json;
then cat /tmp/a.json >"$f";
fi;
done;
rm -f -- /tmp/a.json
' _ {} +;
```
|
|
Address issue: [Gregtech.log spam with 6724 lines of "Unknown Key for Unification, Typo?" #7866](https://github.com/GTNewHorizons/GT-New-Horizons-Modpack/issues/7866)
- Fix the logic for logging possible Typos (prioritise least cost)
- Improve reverse recipes by excluding ore names of tools early to prevent
unexpected and un needed unification lookups
- Turn off unification typo logging in reverse recipes
Reduced unification typo spam from 6724, down to 11 remaining entries:
```none
circuitGood
circuitData
circuitElite
circuitMaster
circuitUltimate
circuitSuperconductor
gearSteel
gearAluminium
gearStainlessSteel
gearTitanium
gearTungstenSteel
```
|
|
|
|
Remove useless stacktrace by the worldgen loader when Galactic Greg is absent.
|
|
address issue [NPE in GT_MetaTileEntity_MultiBlockBase.java:314 until the muffler has a valid tile #7454](https://github.com/GTNewHorizons/GT-New-Horizons-Modpack/issues/7454)
|
|
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
|
|
Add missing chaining of the `onPostTick` event handler to parent class.
`GT_MetaPipeEntity_(Cable|Pipe|Fluid)` classes were not forwarding
the `onPostTick` event handler to their parent `MetaPipeEntity` class,
so pipes were not rendering the change unless another machine tile which
did properly chain the event handler to its parent
(like `GT_MetaTileEntity_TieredMachineBlock`) was present in same chunk.
|
|
fix(rendering): itemblocks inventory brightness and orientation
|
|
WAILAPlugins has been updated to the new solar boiler interface.
Deprecated methods are left behind for backward compat with older plugins.
Rebase from experimental
|