From 3438e20cb396a443b5b610fc1fbfbe4e2cc88aaa Mon Sep 17 00:00:00 2001 From: Dusan Milutinovic Date: Sun, 9 Feb 2020 16:28:29 +0100 Subject: [PATCH] Update CSharpRunner.cs Added System.Net to allow communication with the web. --- MinecraftClient/CSharpRunner.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/MinecraftClient/CSharpRunner.cs b/MinecraftClient/CSharpRunner.cs index d6c55ca4..de9b6f45 100644 --- a/MinecraftClient/CSharpRunner.cs +++ b/MinecraftClient/CSharpRunner.cs @@ -74,6 +74,7 @@ namespace MinecraftClient "using System.Linq;", "using System.Text;", "using System.IO;", + "using System.Net;", "using System.Threading;", "using MinecraftClient;", "using MinecraftClient.Mapping;",