Added world size to world command.

This commit is contained in:
Scavenger3 2013-06-30 19:20:07 +10:00
parent 8a7bdf6697
commit 93c76f6d53

View file

@ -742,6 +742,7 @@ namespace TShockAPI
public static void WorldInfo(CommandArgs args)
{
args.Player.SendInfoMessage("World name: " + Main.worldName);
args.Player.SendInfoMessage("World size: {0}x{1}", Main.maxTilesX, Main.maxTilesY);
args.Player.SendInfoMessage("World ID: " + Main.worldID);
}