Change default MOTD and include plugins

This commit is contained in:
Drew DeVault 2015-06-20 16:43:16 -04:00
parent 14f731aec5
commit feea66b366
2 changed files with 2 additions and 2 deletions

View File

@ -185,7 +185,7 @@ namespace TrueCraft
stats.Add("gametype", "SMP");
stats.Add("game_id", "TRUECRAFT");
stats.Add("version", "1.0");
stats.Add("plugins", "");
stats.Add("plugins", "TrueCraft");
stats.Add("map", Server.Worlds.First().Name);
stats.Add("numplayers", Server.Clients.Count.ToString());
stats.Add("maxplayers", "64");

View File

@ -22,7 +22,7 @@ namespace TrueCraft
public ServerConfiguration()
{
MOTD = ChatColor.Red + "Welcome to TrueCraft!";
MOTD = "Welcome to TrueCraft!";
Debug = new DebugConfiguration();
ServerPort = 25565;
ServerAddress = "0.0.0.0";