Skip to content

Commit

Permalink
修复了user指令不显示中文指令的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
mistzzt committed Dec 26, 2016
1 parent 5aaab2b commit 085944b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion TShockAPI/Commands.cs
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ public static void InitCommands()
AllowServer = false,
HelpText = "首次登入游戏时验证超管."
});
add(new Command(Permissions.user, ManageUsers, "user")
add(new Command(Permissions.user, ManageUsers, "user", "用户")
{
DoLog = false,
HelpText = "管理用户账户."
Expand Down
2 changes: 1 addition & 1 deletion TShockAPI/TShock.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public class TShock : TerrariaPlugin
/// <summary>CNMode - 显示当前汉化版本信息.</summary>
public static readonly string CNMode = "高级汉化-开发";
/// <summary>CNVersion - 显示当前汉化版本号.</summary>
public static readonly Version CNVersion = new Version(2, 1, 0, 0);
public static readonly Version CNVersion = new Version(2, 1, 1, 0);

/// <summary>SavePath - This is the path TShock saves its data in. This path is relative to the TerrariaServer.exe (not in ServerPlugins).</summary>
public static string SavePath = "tshock";
Expand Down

0 comments on commit 085944b

Please sign in to comment.