Skip to content

Commit

Permalink
修复增加指令方法参数导致无法编译的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
mistzzt committed Aug 2, 2016
1 parent 8747e45 commit a398448
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 @@ -512,7 +512,7 @@ public static void InitCommands()
AllowServer = false,
HelpText = "设定世界出生点."
});
add(new Command(Permissions.dungeonposition, SetDungeon, "setdungeon", , "设置地牢位置")
add(new Command(Permissions.dungeonposition, SetDungeon, "setdungeon", "设置地牢位置")
{
AllowServer = 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 @@ -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, 2, 1, 0);
public static readonly Version CNVersion = new Version(1, 2, 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

0 comments on commit a398448

Please sign in to comment.