Skip to content

Commit

Permalink
修复合并造成的符号缺失并更改指令名
Browse files Browse the repository at this point in the history
  • Loading branch information
mistzzt committed Oct 22, 2016
1 parent 7303a4a commit b2d168b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions TShockAPI/Commands.cs
Original file line number Diff line number Diff line change
Expand Up @@ -244,9 +244,9 @@ public static void InitCommands()
DoLog = false,
HelpText = "注册新账户."
});
add(new Command(Permissions.checkaccountinfo, ViewAccountInfo, "accountinfo", "账号信息" "ai")
add(new Command(Permissions.checkaccountinfo, ViewAccountInfo, "accountinfo", "账户信息", "ai")
{
HelpText = "查看用户的账号信息."
HelpText = "查看用户的账户信息."
});
#endregion
#region Admin Commands
Expand Down
2 changes: 1 addition & 1 deletion TShockAPI/TShock.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public class TShock : TerrariaPlugin
/// <summary>CNMode - 显示当前汉化版本信息.</summary>
public static readonly string CNMode = "高级汉化-开发";
/// <summary>CNVersion - 显示当前汉化版本号.</summary>
public static readonly Version CNVersion = new Version(1, 5, 1, 0);
public static readonly Version CNVersion = new Version(1, 5, 2, 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

2 comments on commit b2d168b

@sgkoishi
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

travis表示还是不能编译2333333

@mistzzt
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

官方加入了脚本, 执行不能通过. 编译可以的.
所以我现在已经把travis关掉了

Please sign in to comment.