Get rid of String interpolation, replace with string format.

This commit is contained in:
CarbonNeuron 2020-05-03 10:56:55 -05:00
parent 2fdb89c11a
commit bb5ea0280a

View file

@ -104,7 +104,7 @@ namespace MinecraftClient.ChatBots
{
if (saveInternal)
{
save($"Internal {commandName}({commandParams}): {Result}");
save(string.Format("Internal {0}({1}): {2}", commandName, commandParams, Result));
}
}