mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-13 08:38:19 -05:00
I apparently initialized the commands for each server, which result in 114 commands being added. That is now fixed.
Hopefully this is the final fix for chat remaining on empty servers. (order matters!) Configuration setting to allow multiple owners. Fixed setlevel issues. Organized Server class variables
This commit is contained in:
18
SharedLibrary/ServerConfiguration.cs
Normal file
18
SharedLibrary/ServerConfiguration.cs
Normal file
@ -0,0 +1,18 @@
|
||||
using SharedLibrary.Interfaces;
|
||||
|
||||
namespace SharedLibrary
|
||||
{
|
||||
public class ServerConfiguration : Serialize<ServerConfiguration>
|
||||
{
|
||||
public string IP;
|
||||
public int Port;
|
||||
public string Password;
|
||||
public string FtpPrefix;
|
||||
public bool AllowMultipleOwners;
|
||||
|
||||
public override string Filename()
|
||||
{
|
||||
return $"config/servers/{IP}_{Port}.cfg";
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user