From bb5ea0280a3b165d1384422e2152adfa97658990 Mon Sep 17 00:00:00 2001 From: CarbonNeuron Date: Sun, 3 May 2020 10:56:55 -0500 Subject: [PATCH] Get rid of String interpolation, replace with string format. --- MinecraftClient/ChatBots/ChatLog.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MinecraftClient/ChatBots/ChatLog.cs b/MinecraftClient/ChatBots/ChatLog.cs index 436a90ed..8714f937 100644 --- a/MinecraftClient/ChatBots/ChatLog.cs +++ b/MinecraftClient/ChatBots/ChatLog.cs @@ -104,7 +104,7 @@ namespace MinecraftClient.ChatBots { if (saveInternal) { - save($"Internal {commandName}({commandParams}): {Result}"); + save(string.Format("Internal {0}({1}): {2}", commandName, commandParams, Result)); } }