aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDoKM <mcazzyman@gmail.com>2021-08-14 10:10:49 +0200
committerDoKM <mcazzyman@gmail.com>2021-08-14 10:10:49 +0200
commit48d460882e72bb075c20491d89c09b04d23c8043 (patch)
tree6f870e15e07c8831b73bf143771d810fcfef5613 /src
parentcd83375fced4440c556efcae6ae9aea50badbb07 (diff)
downloadNotEnoughUpdates-48d460882e72bb075c20491d89c09b04d23c8043.tar.gz
NotEnoughUpdates-48d460882e72bb075c20491d89c09b04d23c8043.tar.bz2
NotEnoughUpdates-48d460882e72bb075c20491d89c09b04d23c8043.zip
Change first time message to open /neuhelp instead of tutorial
Diffstat (limited to 'src')
-rw-r--r--src/main/java/io/github/moulberry/notenoughupdates/NEUEventListener.java4
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(""));
}