Rename Result to result to be compliant.

This commit is contained in:
CarbonNeuron 2020-05-03 11:18:18 -05:00
parent bb5ea0280a
commit 5fdbff94c7

View file

@ -100,11 +100,11 @@ namespace MinecraftClient.ChatBots
}
}
public override void OnInternalCommand(string commandName,string commandParams, string Result)
public override void OnInternalCommand(string commandName,string commandParams, string result)
{
if (saveInternal)
{
save(string.Format("Internal {0}({1}): {2}", commandName, commandParams, Result));
save(string.Format("Internal {0}({1}): {2}", commandName, commandParams, result));
}
}