mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-10 15:20:48 -05:00
-added !ip command (prints a client's external IP)
-fixed up the findall command -moved aliases to the manager -added admins page to view privileged users -fixed refactoring mistake with messages
This commit is contained in:
@ -69,7 +69,7 @@ namespace SharedLibrary
|
||||
LastConnection = DateTime.Now;
|
||||
}
|
||||
|
||||
public Player(String n, String id, Player.Permission P, String I, String UID)
|
||||
public Player(String n, String id, Player.Permission P, String I, String UID, int dbid)
|
||||
{
|
||||
Name = n;
|
||||
NetworkID = id;
|
||||
@ -77,6 +77,7 @@ namespace SharedLibrary
|
||||
IP = I;
|
||||
ClientID = -1;
|
||||
this.UID = UID;
|
||||
DatabaseID = dbid;
|
||||
}
|
||||
|
||||
public Player(string n, string id, int num, Player.Permission l, int cind, String lo, int con, String IP2)
|
||||
|
Reference in New Issue
Block a user