From e577d6b6f54eae437f11f4e4d8c683ade194e1e4 Mon Sep 17 00:00:00 2001 From: Andrew Steinborn Date: Thu, 20 Sep 2018 16:09:46 -0400 Subject: [PATCH] Fix typo from PR. --- .../proxy/connection/client/StatusSessionHandler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxy/src/main/java/com/velocitypowered/proxy/connection/client/StatusSessionHandler.java b/proxy/src/main/java/com/velocitypowered/proxy/connection/client/StatusSessionHandler.java index 7c4e84376..a8b0f3bd0 100644 --- a/proxy/src/main/java/com/velocitypowered/proxy/connection/client/StatusSessionHandler.java +++ b/proxy/src/main/java/com/velocitypowered/proxy/connection/client/StatusSessionHandler.java @@ -49,7 +49,7 @@ public class StatusSessionHandler implements MinecraftSessionHandler { new ServerPing.Players(server.getPlayerCount(), configuration.getShowMaxPlayers(), ImmutableList.of()), configuration.getMotdComponent(), configuration.getFavicon(), - configuration.isAnnounceForge() ? ServerPing.Modinfo.DEFAULT : null + configuration.isAnnounceForge() ? ServerPing.ModInfo.DEFAULT : null ); ProxyPingEvent event = new ProxyPingEvent(inboundWrapper, initialPing);