malte0811

Results 99 comments of malte0811

Does this happen without Baritone?

Please try updating Forge, there was a race condition in `LazyOptional` that *could* cause this.

No idea if this is still relevant for you after 2 years, but I've found a working alternative to the `afterEvaluate` snippet you posted: ```gradle tasks.withType(Task) { if (it.name ==...

This is with arch-loom, right? I'm pretty sure it works fine under ForgeGradle (various people including myself have done addon dev on 1.18), so I'd consider it a bug in...

Is it actually *hitting* things in that wrong direction? It renders weirdly because MC caps the synced entity speed at 3.9 blocks/tick, while the railgun does 20 blocks/tick. But in...

@FerroO2000 1. It would be nice if there was a note somewhere telling people that the code available here does not correspond to the latest release (or anything later than...

Alternatively you can just update to the latest IE version, it will prevent the call causing issues and log a warning.

The event for static geometry is (in most cases) fired off-thread AFAICT, this should probably be noted in the JavaDoc. This also means that any data used for rendering in...

IMO just giving access to the block model data is not enough, it's not unreasonable to want to render things into a chunk (section) without any blocks controlled by your...

My (not very thought-through) approach would have been to fire the event on-thread and only have it gather a list of `ISectionRenderer`s (or similar). This would be a functional interface...