From 73e3e1752afed60c2587f74a355c4929b291dfb1 Mon Sep 17 00:00:00 2001 From: Andrew Steinborn Date: Sun, 4 Nov 2018 10:45:55 -0500 Subject: [PATCH] Plural. --- .../com/velocitypowered/proxy/command/VelocityCommand.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/proxy/src/main/java/com/velocitypowered/proxy/command/VelocityCommand.java b/proxy/src/main/java/com/velocitypowered/proxy/command/VelocityCommand.java index 6e9c087bb..e09101d4e 100644 --- a/proxy/src/main/java/com/velocitypowered/proxy/command/VelocityCommand.java +++ b/proxy/src/main/java/com/velocitypowered/proxy/command/VelocityCommand.java @@ -11,12 +11,10 @@ import com.velocitypowered.api.plugin.PluginDescription; import com.velocitypowered.api.proxy.ProxyServer; import com.velocitypowered.api.util.ProxyVersion; import java.util.Arrays; -import java.util.Collection; import java.util.List; import java.util.Locale; import java.util.Map; import java.util.stream.Collectors; -import java.util.stream.Stream; import net.kyori.text.Components; import net.kyori.text.TextComponent; import net.kyori.text.event.ClickEvent; @@ -194,7 +192,7 @@ public class VelocityCommand implements Command { if (description.getAuthors().size() == 1) { hoverText.append(TextComponent.of("Author: " + description.getAuthors().get(0))); } else { - hoverText.append(TextComponent.of("Author: " + Joiner.on(", ") + hoverText.append(TextComponent.of("Authors: " + Joiner.on(", ") .join(description.getAuthors()))); } }