7dfc2bbc1b
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
19 lines
420 B
C#
19 lines
420 B
C#
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";
|
|
}
|
|
}
|
|
}
|