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

update file localizations

update custom callbacks
add server count to master
add most played to token list
This commit is contained in:
RaidMax
2018-05-21 16:09:27 -05:00
parent 31744ce876
commit 8ac75ec63a
14 changed files with 1181 additions and 1052 deletions

View File

@ -245,7 +245,7 @@ namespace SharedLibraryCore.RCon
goto retrySend;
else if (FailedReceives == 4)
{
Log.WriteError($"Failed to receive data from {socketConnection.RemoteEndPoint} after {FailedReceives} tries");
// Log.WriteError($"Failed to receive data from {socketConnection.RemoteEndPoint} after {FailedReceives} tries");
}
if (FailedReceives >= 4)
@ -277,7 +277,7 @@ namespace SharedLibraryCore.RCon
else if (FailedReceives == 4)
{
Log.WriteError($"Failed to receive data from {socketConnection.RemoteEndPoint} after {FailedReceives} tries");
// Log.WriteError($"Failed to receive data from {socketConnection.RemoteEndPoint} after {FailedReceives} tries");
}
if (FailedReceives >= 4)

View File

@ -168,7 +168,7 @@ namespace SharedLibraryCore.Services
.ToListAsync();
// update all related clients level
matchingClients.ForEach(c => c.Level = (client.Level == Objects.Player.Permission.Banned) ?
matchingClients.ForEach(c => c.Level = (client.Level == Player.Permission.Banned) ?
client.Level : entity.Level);
}