From 48d460882e72bb075c20491d89c09b04d23c8043 Mon Sep 17 00:00:00 2001 From: DoKM Date: Sat, 14 Aug 2021 10:10:49 +0200 Subject: Change first time message to open /neuhelp instead of tutorial --- .../java/io/github/moulberry/notenoughupdates/NEUEventListener.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main/java') diff --git a/src/main/java/io/github/moulberry/notenoughupdates/NEUEventListener.java b/src/main/java/io/github/moulberry/notenoughupdates/NEUEventListener.java index d5d89dd7..fd6253a7 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/NEUEventListener.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/NEUEventListener.java @@ -374,8 +374,8 @@ public class NEUEventListener { Minecraft.getMinecraft().thePlayer.addChatMessage(new ChatComponentText( EnumChatFormatting.BLUE+"It seems this is your first time using NotEnoughUpdates.")); ChatComponentText clickText = new ChatComponentText( - EnumChatFormatting.YELLOW+"Click this message if you would like to view a short tutorial."); - clickText.setChatStyle(Utils.createClickStyle(ClickEvent.Action.RUN_COMMAND, "/neututorial")); + EnumChatFormatting.YELLOW+"Click this message if you would like to view a list of NotEnoughUpdate's commands."); + clickText.setChatStyle(Utils.createClickStyle(ClickEvent.Action.RUN_COMMAND, "/neuhelp")); Minecraft.getMinecraft().thePlayer.addChatMessage(clickText); Minecraft.getMinecraft().thePlayer.addChatMessage(new ChatComponentText("")); } -- cgit