Fix the error message in str2double.

This commit is contained in:
BruceChen 2022-09-29 21:34:18 +08:00
parent 5571b99a03
commit 36d2a2c731
3 changed files with 4 additions and 2 deletions

View file

@ -966,7 +966,7 @@ namespace MinecraftClient
return num;
else
{
ConsoleIO.WriteLogLine(Translations.Get("error.setting.str2int", str));
ConsoleIO.WriteLogLine(Translations.Get("error.setting.str2double", str));
return 0;
}
}