mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-10 15:20:48 -05:00
Re added mask command
Prune confirms completion Findall display previous name confirmation message sent after kick tempban/ban confirmation wording changes players page is now paginated
This commit is contained in:
@ -776,7 +776,13 @@ namespace IW4MAdmin
|
||||
|
||||
else if (querySet["recent"] != null)
|
||||
{
|
||||
matchedPlayers = ApplicationManager.GetInstance().GetClientDatabase().GetRecentPlayers();
|
||||
int offset = 0;
|
||||
if (querySet["offset"] != null)
|
||||
offset = Int32.Parse(querySet["offset"]);
|
||||
if (offset < 0)
|
||||
throw new FormatException("Invalid offset");
|
||||
|
||||
matchedPlayers = ApplicationManager.GetInstance().GetClientDatabase().GetRecentPlayers(15, offset);
|
||||
recent = true;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user