From 294d85d5e1ec02f2a77dd08be456ea4f9242a751 Mon Sep 17 00:00:00 2001 From: ORelio Date: Sun, 9 Aug 2020 18:41:09 +0200 Subject: [PATCH] Fix joining Forge servers without mods (#1189) Regression from 74151097ff5c935bea125989c0ef139224b1e184 --- MinecraftClient/Protocol/Handlers/Protocol18Forge.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/MinecraftClient/Protocol/Handlers/Protocol18Forge.cs b/MinecraftClient/Protocol/Handlers/Protocol18Forge.cs index 56ab8072..5df42cba 100644 --- a/MinecraftClient/Protocol/Handlers/Protocol18Forge.cs +++ b/MinecraftClient/Protocol/Handlers/Protocol18Forge.cs @@ -283,7 +283,11 @@ namespace MinecraftClient.Protocol.Handlers } return true; } - else ConsoleIO.WriteLineFormatted("§8Server is running Forge without mods."); + else + { + ConsoleIO.WriteLineFormatted("§8Server is running Forge without mods."); + forgeInfo = null; + } } } return false;