diff --git a/server/src/main/java/org/galliumpowered/internal/plugin/commands/GalliumCommand.java b/server/src/main/java/org/galliumpowered/internal/plugin/commands/GalliumCommand.java index 0a29246..8d766d9 100644 --- a/server/src/main/java/org/galliumpowered/internal/plugin/commands/GalliumCommand.java +++ b/server/src/main/java/org/galliumpowered/internal/plugin/commands/GalliumCommand.java @@ -9,7 +9,7 @@ public class GalliumCommand { @Command(aliases = {"gallium"}, description = "Information about Gallium") public void galliumCommand(CommandContext ctx) { - ctx.getCaller().sendMessage(Component.text(Colors.GREEN + "--- Gallium " + Colors.WHITE + "-" + Colors.GREEN + " Version 1.1.0-beta.3 ---")); + ctx.getCaller().sendMessage(Component.text(Colors.GREEN + "--- Gallium " + Colors.WHITE + "-" + Colors.GREEN + " Version " + Gallium.getVersion() + " ---")); ctx.getCaller().sendMessage(Component.text(Colors.GREEN + "Developers: " + Colors.WHITE + "SlimeDiamond, TheKodeToad")); ctx.getCaller().sendMessage(Component.text(Colors.GREEN + "API version: " + Colors.WHITE + Gallium.getVersion())); ctx.getCaller().sendMessage(Component.text(Colors.GREEN + "Minecraft version: " + Colors.WHITE + Gallium.getBridge().getServerVersion()));