From 9ea6b0b8bb23e4cdfc3c347b4b6a21f500cf119f Mon Sep 17 00:00:00 2001 From: Luck Date: Thu, 2 Nov 2017 19:32:13 +0000 Subject: [PATCH] Use "None" instead of "global" when no server name is specified --- .../lucko/luckperms/common/commands/impl/misc/InfoCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/main/java/me/lucko/luckperms/common/commands/impl/misc/InfoCommand.java b/common/src/main/java/me/lucko/luckperms/common/commands/impl/misc/InfoCommand.java index bbf68fe4..cefcbf40 100644 --- a/common/src/main/java/me/lucko/luckperms/common/commands/impl/misc/InfoCommand.java +++ b/common/src/main/java/me/lucko/luckperms/common/commands/impl/misc/InfoCommand.java @@ -69,7 +69,7 @@ public class InfoCommand extends SingleCommand { Message.INFO_MIDDLE.send(sender, plugin.getMessagingService().map(ExtendedMessagingService::getName).orElse("None"), - plugin.getContextManager().getStaticContextString().orElse("global"), + plugin.getContextManager().getStaticContextString().orElse("None"), plugin.getPlayerCount(), plugin.getUniqueConnections().size(), DateUtil.formatTimeShort((System.currentTimeMillis() - plugin.getStartTime()) / 1000L),