Description
Minecraft Version: 1.21.5
NeoForge Version: 21.5.14-beta
Tested by placing a break point at the print invocation, it is never called.
Maybe the event has to be moved to IModBusEvent
?
The other two client lifecycle events introduced together with this one (stopping and stopped) however do work fine.
@Mod("examplemod")
public class ExampleMod {
public ExampleMod() {
NeoForge.EVENT_BUS.addListener((final ClientStartedEvent evt) -> {
System.out.println();
});
}
}