fixed amb816 - stats comments were wrong

This commit is contained in:
David Anderson 2007-10-22 19:40:35 +00:00
parent 468e6fb9dd
commit ca3d15c27e

View File

@ -288,7 +288,14 @@ saveSettings(filename[])
{
if (get_xvar_num(g_menuDataId[a]))
{
format(text, 255, "%-24.23s ;%s", g_menuDataVar[a], g_menuData[a])
if (equal(g_menuData[a], "ST_", 3))
{
format(text, 255, "%-24.23s ;%L", g_menuDataVar[a], LANG_SERVER, g_menuData[a])
}
else
{
format(text, 255, "%-24.23s ;%s", g_menuDataVar[a], g_menuData[a])
}
write_file(filename, text)
}
}