From 09a220e0a232663d949c4a03c115a534abb80b69 Mon Sep 17 00:00:00 2001 From: Allink Date: Wed, 25 May 2022 20:18:01 +0100 Subject: [PATCH] VPS -> Host --- .../totalfreedommod/discord/commands/UptimeCommand.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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