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

@ -287,8 +287,15 @@ saveSettings(filename[])
for (new a = 0; a < g_menuDataNum; ++a) for (new a = 0; a < g_menuDataNum; ++a)
{ {
if (get_xvar_num(g_menuDataId[a])) if (get_xvar_num(g_menuDataId[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]) format(text, 255, "%-24.23s ;%s", g_menuDataVar[a], g_menuData[a])
}
write_file(filename, text) write_file(filename, text)
} }
} }