diff --git a/src/main/java/me/totalfreedom/totalfreedommod/discord/commands/UptimeCommand.java b/src/main/java/me/totalfreedom/totalfreedommod/discord/commands/UptimeCommand.java index 47c2141f..eedd4718 100644 --- a/src/main/java/me/totalfreedom/totalfreedommod/discord/commands/UptimeCommand.java +++ b/src/main/java/me/totalfreedom/totalfreedommod/discord/commands/UptimeCommand.java @@ -23,7 +23,7 @@ public class UptimeCommand extends DiscordCommandImpl @Override public String getDescription() { - return "Returns the uptime of the VPS."; + return "Returns the uptime of the host."; } @Override @@ -57,7 +57,7 @@ public class UptimeCommand extends DiscordCommandImpl if (line != null) { - embedBuilder.setTitle("VPS Uptime Information"); + embedBuilder.setTitle("Host Uptime Information"); embedBuilder.setDescription(line.trim()); } else