Added MaxSlots on debug-config output
This commit is contained in:
parent
b33d1e1e95
commit
b99da71d58
1 changed files with 6 additions and 3 deletions
|
|
@ -143,14 +143,17 @@ namespace TShockAPI
|
||||||
lineTwo += "KickTnt : " + ConfigurationManager.kickTnt + ", ";
|
lineTwo += "KickTnt : " + ConfigurationManager.kickTnt + ", ";
|
||||||
lineTwo += "BanBoom : " + ConfigurationManager.banBoom + ", ";
|
lineTwo += "BanBoom : " + ConfigurationManager.banBoom + ", ";
|
||||||
lineTwo += "KickBoom : " + ConfigurationManager.kickBoom;
|
lineTwo += "KickBoom : " + ConfigurationManager.kickBoom;
|
||||||
Tools.SendMessage(ply, lineTwo, new[] {255f, 255f, 0f});
|
Tools.SendMessage(ply, lineTwo, new[] { 255f, 255f, 0f });
|
||||||
string lineThree = "";
|
string lineThree = "";
|
||||||
lineThree += "InvMultiplier : " + ConfigurationManager.invasionMultiplier + ", ";
|
lineThree += "InvMultiplier : " + ConfigurationManager.invasionMultiplier + ", ";
|
||||||
lineThree += "ProtectS : " + ConfigurationManager.spawnProtect + ", ";
|
lineThree += "ProtectS : " + ConfigurationManager.spawnProtect + ", ";
|
||||||
lineThree += "ProtectR : " + ConfigurationManager.spawnProtectRadius + ", ";
|
lineThree += "ProtectR : " + ConfigurationManager.spawnProtectRadius + ", ";
|
||||||
lineThree += "DMS : " + ConfigurationManager.defaultMaxSpawns + ", ";
|
lineThree += "DMS : " + ConfigurationManager.defaultMaxSpawns + ", ";
|
||||||
lineThree += "SpawnRate: " + ConfigurationManager.defaultSpawnRate + ", ";
|
lineThree += "SpawnRate: " + ConfigurationManager.defaultSpawnRate;
|
||||||
Tools.SendMessage(ply, lineThree, new[] {255f, 255f, 0f});
|
Tools.SendMessage(ply, lineThree, new[] { 255f, 255f, 0f });
|
||||||
|
string lineFour = "";
|
||||||
|
lineFour += "MaxSlots : " + ConfigurationManager.maxSlots + ", ";
|
||||||
|
Tools.SendMessage(ply, lineFour, new[] { 255f, 255f, 0f });
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void Kick(CommandArgs args)
|
public static void Kick(CommandArgs args)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue