From 46e8818b5b93963268ddf2152e94fd6c8365c5a4 Mon Sep 17 00:00:00 2001 From: Milutinke Date: Mon, 24 Oct 2022 22:47:11 +0200 Subject: [PATCH] Fixed a mintor warning in the Map chat bot. --- MinecraftClient/ChatBots/Map.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MinecraftClient/ChatBots/Map.cs b/MinecraftClient/ChatBots/Map.cs index a004b82f..e6d4137a 100644 --- a/MinecraftClient/ChatBots/Map.cs +++ b/MinecraftClient/ChatBots/Map.cs @@ -313,7 +313,7 @@ namespace MinecraftClient.ChatBots if (File.Exists(newFileName)) File.Delete(newFileName); } - catch (IOException e) { } + catch (IOException) { } } }); }