1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 15:20:48 -05:00

Update Pluto T6 parser

This commit is contained in:
RaidMax
2024-11-26 23:05:23 -06:00
parent ef0534c2d3
commit 807ea9bc3e
4 changed files with 55 additions and 16 deletions

View File

@ -431,6 +431,7 @@ namespace IW4MAdmin.Application
foreach (var serverConfig in _appConfig.Servers)
{
ConfigurationMigration.ModifyLogPath020919(serverConfig);
ConfigurationMigration.UpdatePlutoniumT6Parser(serverConfig);
if (serverConfig.RConParserVersion == null || serverConfig.EventParserVersion == null)
{
@ -447,6 +448,8 @@ namespace IW4MAdmin.Application
serverConfig.ModifyParsers();
}
}
ConfigHandler.Set(_appConfig);
await ConfigHandler.Save();
}