Hello! So I've tried this but the Minecraft.getMinecraft()... is throwing a nullpointerexception.
@SubscribeEvent
public void onClientJoinedServer(FMLNetworkEvent.ClientConnectedToServerEvent event){
Minecraft.getMinecraft().thePlayer.addChatMessage(new TextComponentString("Blah blah blah");
}
My guess is because the event fires off before the player actually joins the server so thePlayer isn't actually instantiated yet. So is there any way to get around this? I'm aware I might sound totally stupid right now but I haven't found any ways around it ?
Thanks!