diff --git a/TShockAPI/Commands.cs b/TShockAPI/Commands.cs index 8835ee64..02052217 100755 --- a/TShockAPI/Commands.cs +++ b/TShockAPI/Commands.cs @@ -1285,11 +1285,11 @@ namespace TShockAPI { if (args.Silent) { - args.Player.SendInfoMessage("[broken name] was {0}banned for '{1}'.", force ? "force " : "", reason); + args.Player.SendInfoMessage("{0} was {1}banned for '{2}'.", user.Name, force ? "force " : "", reason); } else { - TSPlayer.All.SendInfoMessage("{0} {1}banned [broken name] for '{2}'.", args.Player.Name, force ? "force " : "", reason); + TSPlayer.All.SendInfoMessage("{0} {1}banned {2} for '{3}'.", args.Player.Name, force ? "force " : "", user.Name, reason); } } } diff --git a/TShockAPI/Properties/AssemblyInfo.cs b/TShockAPI/Properties/AssemblyInfo.cs index 9e1ba90f..711851c6 100755 --- a/TShockAPI/Properties/AssemblyInfo.cs +++ b/TShockAPI/Properties/AssemblyInfo.cs @@ -53,5 +53,5 @@ using System.Runtime.InteropServices; // Also, be sure to release on github with the exact assembly version tag as below // so that the update manager works correctly (via the Github releases api and mimic) -[assembly: AssemblyVersion("4.2.8")] -[assembly: AssemblyFileVersion("4.2.8")] +[assembly: AssemblyVersion("4.2.9")] +[assembly: AssemblyFileVersion("4.2.9")] diff --git a/TShockAPI/TShock.cs b/TShockAPI/TShock.cs index e7c605fe..bef1506a 100755 --- a/TShockAPI/TShock.cs +++ b/TShockAPI/TShock.cs @@ -44,7 +44,7 @@ namespace TShockAPI public class TShock : TerrariaPlugin { public static readonly Version VersionNum = Assembly.GetExecutingAssembly().GetName().Version; - public static readonly string VersionCodename = "2015!!"; + public static readonly string VersionCodename = "nicatronTg hotfixes 4.2.8 in less than an hour edition"; public static string SavePath = "tshock"; private const string LogFormatDefault = "yyyy-MM-dd_HH-mm-ss";