Merge branch 'general-devel' of github.com:NyxStudios/TShock into general-devel

This commit is contained in:
Zack Piispanen 2015-04-04 01:46:54 -04:00
commit 9547dade6b
3 changed files with 2 additions and 12 deletions

View file

@ -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

View file

@ -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";

View file

@ -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