From 93c76f6d538ecb0da61dfa7798a775fab6743cd9 Mon Sep 17 00:00:00 2001 From: Scavenger3 Date: Sun, 30 Jun 2013 19:20:07 +1000 Subject: [PATCH] Added world size to world command. --- TShockAPI/Commands.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/TShockAPI/Commands.cs b/TShockAPI/Commands.cs index bad2ba8f..bba2edec 100644 --- a/TShockAPI/Commands.cs +++ b/TShockAPI/Commands.cs @@ -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); }