diff options
author | DoKM <mcazzyman@gmail.com> | 2021-08-14 10:10:49 +0200 |
---|---|---|
committer | DoKM <mcazzyman@gmail.com> | 2021-08-14 10:10:49 +0200 |
commit | 48d460882e72bb075c20491d89c09b04d23c8043 (patch) | |
tree | 6f870e15e07c8831b73bf143771d810fcfef5613 | |
parent | cd83375fced4440c556efcae6ae9aea50badbb07 (diff) | |
download | NotEnoughUpdates-48d460882e72bb075c20491d89c09b04d23c8043.tar.gz NotEnoughUpdates-48d460882e72bb075c20491d89c09b04d23c8043.tar.bz2 NotEnoughUpdates-48d460882e72bb075c20491d89c09b04d23c8043.zip |
Change first time message to open /neuhelp instead of tutorial
-rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/NEUEventListener.java | 4 |
1 files changed, 2 insertions, 2 deletions
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("")); } |