diff --git a/README.md b/README.md index 77ab3948..7f0f0f41 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,7 @@ TShock is a server modification for Terraria, written in C#, and based upon the * Reserved slots * User punishment (kicking, banning, muting) * Server side characters +* JSON based configuration management ## Community diff --git a/TShockAPI/TShock.cs b/TShockAPI/TShock.cs index 51361333..f7d08484 100755 --- a/TShockAPI/TShock.cs +++ b/TShockAPI/TShock.cs @@ -45,7 +45,7 @@ namespace TShockAPI public class TShock : TerrariaPlugin { public static readonly Version VersionNum = Assembly.GetExecutingAssembly().GetName().Version; - public static readonly string VersionCodename = "nicatronTg hotfixes 4.2.8 in less than an hour edition"; + public static readonly string VersionCodename = "TY: Wolfje, Kro, DankBud, Atreon, Elevatorguy"; public static string SavePath = "tshock"; private const string LogFormatDefault = "yyyy-MM-dd_HH-mm-ss"; diff --git a/TShockAPI/postbuild.bat b/TShockAPI/postbuild.bat deleted file mode 100644 index 1ecae508..00000000 --- a/TShockAPI/postbuild.bat +++ /dev/null @@ -1,11 +0,0 @@ -set pluginspath=C:\Program Files (x86)\Steam\steamapps\common\terraria\serverplugins\ -IF NOT EXIST "%pluginspath%" GOTO SkipCopy -attrib -r "%pluginspath%TShockAPI.dll" -attrib -r "%pluginspath%TShockAPI.pdb" -copy "TShockAPI.dll" "%pluginspath%" -copy "TShockAPI.pdb" "%pluginspath%" -echo Files copied -GOTO end -:SkipCopy -echo Skipped copying files -:end \ No newline at end of file