jchung01

Results 13 comments of jchung01

To clarify, in its current state, the beacon will get correctly whitelisted if in the config it is `Beacon` instead of `tile.beacon`. Using the beacon as an example, here's what...

It looks like Tinkers' can leak the server's world to the client because it spawns particles via its Proxy classes improperly. See [CommonProxy](https://github.com/SlimeKnights/TinkersConstruct/blob/1.12/src/main/java/slimeknights/tconstruct/common/CommonProxy.java#L84-L85) and [ClientProxy](https://github.com/SlimeKnights/TinkersConstruct/blob/1.12/src/main/java/slimeknights/tconstruct/common/ClientProxy.java#L163-L166). It's easily reproduceable with just...

> Fast Furnace is superseded by UT. There's no need to bundle it in I don't think this is true, UT caches crafting recipes only (so that's FastWorkbench functionality?). If...

This is an issue with Bansoukou not properly patching coremods, specifically RandomThings in this case (RandomThings adds field `VertexLighterFlat` by ASM). I think it is fixed in Bansoukou 5.x, but...

I would assume ROTN updated RLMixins from before it needed FermiumBooter, so they forgot to add FermiumBooter. The reason it launches fine on Forge is because the mixin loader used...

Presumably by Optifine, but the game crash looks like it wasn't from UT. It crashed from an interaction between the mods HBM and "keletupack". Relevant stacktrace: ``` Caused by: java.lang.ClassCastException:...

I was unable to reproduce a crash with just Chickens and UT with the henhouse block, _but_ this sort of crash did happen with the roost block from the Roost...

The bug is due to this line from the commit to fix carpenter dupes [7ad843](https://github.com/ForestryMC/ForestryMC/pull/2729/commits/7ad6843cf32c34105d8860a95f6d2dc96f1fe447#diff-3ebf8ad2102e25c1604a009b97ee487f03037fc07e969cdd7289c759d955b84aR204). All non-oredict entries will grow the first non-oredict itemstack in the recipe because all non-oredict...

Update: Compact Machines 3.0.18-b278 doesn't include [this](https://github.com/CompactMods/CompactMachines/commit/7713c050247977bba955685a6a7c4e770efe8c5a#diff-32787287760dac1f37bbfa8aa54d4db3c8e4c6cb8c0b86d8f5db98f8525510bf) overhaul, but there are no plans to publish that overhaul to Curseforge (see image). However, using a manually built jar that does include...

After debugging a bit, the reason for this issue is a combination of Compact Machine's unusual use of `BlockWall#shouldSideBeRendered` (which is itself a deprecated method) and the use of `SectionRenderCache`...