From c0a9adb175fbf48b37c05342ebd7a20e1c1dc266 Mon Sep 17 00:00:00 2001 From: high Date: Tue, 14 Jun 2011 13:25:17 -0400 Subject: [PATCH] Updated to API 1.3 --- TShockAPI/TShock.cs | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/TShockAPI/TShock.cs b/TShockAPI/TShock.cs index 1990eae9..c8acbc8e 100755 --- a/TShockAPI/TShock.cs +++ b/TShockAPI/TShock.cs @@ -30,15 +30,16 @@ using TerrariaAPI.Hooks; namespace TShockAPI { + [APIVersion(1, 3)] public class TShock : TerrariaPlugin { public static TSPlayer[] players = new TSPlayer[Main.maxPlayers]; public static string saveDir = "./tshock/"; - public static Version VersionNum = new Version(2, 1, 0, 2); + public static Version VersionNum = new Version(2, 1, 0, 3); - public static string VersionCodename = "Forgot to close the issue."; + public static string VersionCodename = "Forgot to increase the version."; private static bool[] BlacklistTiles; @@ -52,11 +53,6 @@ namespace TShockAPI get { return VersionNum; } } - public override Version APIVersion - { - get { return new Version(1, 2); } - } - public override string Name { get { return "TShock"; }