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

Fix bug introduced with auto messages

This commit is contained in:
RaidMax
2019-02-19 19:39:09 -06:00
parent 3d5e91dbed
commit 5755775b85
9 changed files with 27 additions and 20 deletions

View File

@ -195,7 +195,7 @@ namespace SharedLibraryCore
if (found != null)
{
str = str.Replace(Match, (await found.ProcessAsync(server)).ToString());
str = str.Replace(Match, await found.ProcessAsync(server));
}
}