1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 07:13:58 -05:00

properly implement sv_sayName for custom say name

prevent trying to register live radar page for every server (oops)
optimize event processing to prevent slow plugins from affecting command processing
enable database connection resilency
trim extra characters from T7 reassembled response
This commit is contained in:
RaidMax
2020-04-20 10:45:58 -05:00
parent 37daca4a9f
commit 1d3af2079a
7 changed files with 55 additions and 33 deletions

View File

@ -220,7 +220,7 @@ namespace IW4MAdmin.Application.RCon
var statusHeaderMatch = config.StatusHeader.PatternMatcher.Match(responseString);
if (statusHeaderMatch.Success)
{
splitStatusStrings.Insert(0, responseString);
splitStatusStrings.Insert(0, responseString.TrimEnd('\0'));
}
else