Adrian Brock
Adrian Brock
I outlined the fix above, if they want to implement it in GTCEu they can, but I don't work on forks.
The actual error is: ```` java.lang.RuntimeException: One of more entry values did not copy to the correct id. Check log for details! at net.minecraftforge.registries.ForgeRegistry.sync(ForgeRegistry.java:549) ```` The only thing in the...
> The reference to "minecraft:air" suggests it wasn't registered properly "minecraft:air" is used as a block or item not found/default value by minecraft.
Suggestion: Since you have a large number of mods. It might be that updating or adding mods has led to having more than the 65535 blocks/items allowed by 1.12 vanilla...
A simple fix would be to just create a bigger square? Something like: ```` else { // fallback to square itemSlotsLeft = itemSlotsToDown = 1 + (int) sqrt; } ````...
In GTCE the harvest level is defined on the material. For some reason this property is read only: ```` /** * Tool level needed to harvest block of this material...
I believe this answers your question: https://github.com/GregTechCE/GregTech/pull/1568#issuecomment-817241916
The reason for cascading world generation in GTCE is when an ore vein generates at the edge of a chunk at the side where the world isn't loaded. The ore...
> but it remains that its not a proper fix to the issue and more of just a workaround. Its not a fix for anything. You have the choice of...
Interestingly, the place where it crashes has been removed from the latest 1.12.2 version of common capabilites (2.4.8) https://www.curseforge.com/minecraft/mc-mods/common-capabilities/files/3053017 You have 2.4.6 It was removed for performance reasons, but it...