Adds a --no-restart command-line argument for Multiplay

This commit is contained in:
White 2016-04-27 15:12:43 +09:30
parent c4b7ee551c
commit 91c41aa68b
2 changed files with 16 additions and 0 deletions

View file

@ -67,6 +67,11 @@ namespace TShockAPI
/// <summary>LogClear - Determines whether or not the log file should be cleared on initialization.</summary>
private static bool LogClear;
/// <summary>
/// Set by the command line, disables the '/restart' command.
/// </summary>
internal static bool NoRestart;
/// <summary>Players - Contains all TSPlayer objects for accessing TSPlayers currently on the server</summary>
public static TSPlayer[] Players = new TSPlayer[Main.maxPlayers];
/// <summary>Bans - Static reference to the ban manager for accessing bans & related functions.</summary>
@ -690,6 +695,11 @@ namespace TShockAPI
TShock.StatTracker.OptOut = true;
break;
}
case "--no-restart":
{
TShock.NoRestart = true;
break;
}
}
}
}