mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-10 23:31:13 -05:00
-rcon tweaks
-so much stuff cant remember
This commit is contained in:
@ -72,12 +72,14 @@ namespace IW4MAdmin
|
||||
|
||||
public void addName(String Name)
|
||||
{
|
||||
Names += Names + ';';
|
||||
if (Name.Trim() != String.Empty && Name != null)
|
||||
Names += ';' + Names;
|
||||
}
|
||||
|
||||
public void addIP(String IP)
|
||||
{
|
||||
IPS += IP + ';';
|
||||
if (IP.Trim() != String.Empty && IP != null)
|
||||
IPS += ';' + IP;
|
||||
}
|
||||
|
||||
private String Names;
|
||||
@ -89,6 +91,7 @@ namespace IW4MAdmin
|
||||
{
|
||||
public enum Permission
|
||||
{
|
||||
Flagged = -2,
|
||||
Banned = -1,
|
||||
User = 0,
|
||||
Moderator = 1,
|
||||
|
Reference in New Issue
Block a user