Skip to content

Commit

Permalink
修复临时组提示文本问题
Browse files Browse the repository at this point in the history
  • Loading branch information
mistzzt committed Jul 17, 2016
1 parent 25b8c4a commit 8dc295b
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 @@ -1711,9 +1711,9 @@ private static void TempGroup(CommandArgs args)
}
else
{
args.Player.SendSuccessMessage("成功更改玩家 {0} 的用户组至 {1}. 原因: {2}",
args.Player.SendSuccessMessage("成功更改玩家 {0} 的用户组至 {1}. ({2}后过期)",
ply[0].Name, g.Name, args.Parameters[2]);
ply[0].SendSuccessMessage("你的用户组被临时更改至 {0}. 原因: {1}",
ply[0].SendSuccessMessage("你的临时用户组被更改至 {0}. ({1}后过期)",
g.Name, args.Parameters[2]);
}
}
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, 1, 0, 0);
public static readonly Version CNVersion = new Version(1, 1, 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 8dc295b

Please sign in to comment.