Hello!
I want to use ServerAboutToStart and ServerStopped Events, but they aren't firing on forge or mod buses either.
@Mod.EventBusSubscriber(modid = MyMod.MOD_ID, bus = Mod.EventBusSubscriber.Bus.FORGE) // Mod.EventBusSubscriber.Bus.MOD also doesn't work
public class ModEventBusEvents {
@SubscribeEvent
public void onServerAboutToStart(ServerAboutToStartEvent event) {
// Do stuff
}
}