CanardNocturne
CanardNocturne
Hello, I tested with SpongeVanilla and I didn't have the error. Here is my test code: ```java @Listener private void onLogin(final ServerSideConnectionEvent.Join event) { Task build = Task.builder().plugin(this.container).delay(Ticks.of(20)) .execute(() ->...
Hello, `ServerSideConnectionEvent.Join` is called during the server tick and the channel `bungeecord:main` is registered right after because it is in a task. So a fix is to execute your code...
Hello, I tested on my side but the recipes are visibles as shown in the screenshots. I didn't find serverlistplus version 3.5.1, only 3.5.0. I tested with the original spongeforge...
It should be fixed in the latest version (1365), I've tested some of them with success.
Work fine on my side with SpongeNeo 1.21.1-21.1.35-12.0.2-universal With this as code ```java @Listener public void onServerStart(final StartedEngineEvent event) { RawDataChannel rawDataChannel = Sponge.channelManager().ofType(ResourceKey.resolve("lelmc:auth"), RawDataChannel.class); System.out.println(rawDataChannel); } ``` Did I...
Hello, `UpdateLightSideEffect#processSideEffect` try to get the **ChunkSkyLightSources** from a **ChunckAccess** https://github.com/SpongePowered/Sponge/blob/03f977b548650e00d35416084cdf9678fe2f021e/src/main/java/org/spongepowered/common/event/tracking/context/transaction/effect/UpdateLightSideEffect.java#L86 but the field behind the getter is set to null by ScalableLux https://github.com/RelativityMC/ScalableLux/blob/1881f614419f9bd958ea57b0469c4c873bd05d6f/src/main/java/ca/spottedleaf/starlight/mixin/common/chunk/ChunkAccessMixin.java#L95 So it looks like an incompatibility...