AlexIIL
AlexIIL
This is likely caused by #13 (do you have LBA 0.4 or newer?)
It's not currently possible, and unlikely to be possible until buildcraft is ported to 1.14.x
Yeah I'm not sure why that's happening - as the mixin seems to apply properly for me.
What version of LBA / minecraft are you using? This event definitely fires correctly in my buildcraft 1.18.2 dev environment, but it's possible that I've fixed something in that version...
That's annoying. I'll change `ExpandingVcp.draw` to go through `RenderSystem.runAsFancy`.
Do item renders have their own VCP? I know this isn't a problem for blocks, as they use the main one. (For simplicities sake I'll expose a draw method that...
````spatialcrafting.hologram.HologramBlock.activate(HologramBlock.kt:104)```` However when I look at the [source](https://github.com/natanfudge/SpatialCrafting/blob/385de15263e3e6b654496a341beea1d359681467/src/main/kotlin/spatialcrafting/hologram/HologramBlock.kt#L100-L105): ```java 100 | hologramEntity.insertItem(player.getStackInHand(hand)) // is it crashing here? 101 | if (!player.isCreative) player.getStackInHand(hand).count-- 102 | logDebug { 103 | "Inserted item...
The first stack trace is the exception that was actually thrown (and crashed the game). The second stack trace was the first call stack that marked that item stack instance...
> Oil tank + bucket in creative mode doesn't give an oil bucket That's fully intentional, and not a bug. > mods like ProjectRed's (Or OpenBlock's for that matter) "Block...
This looks like https://github.com/BuildCraft/BuildCraft/issues/4664, so the [same fix](https://github.com/BuildCraft/BuildCraft/issues/4664#issuecomment-1051287010) applies: > there's a setting (under Performance) called `guideItemSearchLimit`, which restricts the items that buildcraft scans if there are more items than...