Fix bad XML(unescaped ampersand)

This commit is contained in:
Arthri 2021-11-23 17:13:02 +08:00
parent aa5cb13247
commit 350d76c315
2 changed files with 3 additions and 3 deletions

View file

@ -79,7 +79,7 @@ namespace TShockAPI
/// <summary>Players - Contains all TSPlayer objects for accessing TSPlayers currently on the server</summary> /// <summary>Players - Contains all TSPlayer objects for accessing TSPlayers currently on the server</summary>
public static TSPlayer[] Players = new TSPlayer[Main.maxPlayers]; public static TSPlayer[] Players = new TSPlayer[Main.maxPlayers];
/// <summary>Bans - Static reference to the ban manager for accessing bans & related functions.</summary> /// <summary>Bans - Static reference to the ban manager for accessing bans &amp; related functions.</summary>
public static BanManager Bans; public static BanManager Bans;
/// <summary>Warps - Static reference to the warp manager for accessing the warp system.</summary> /// <summary>Warps - Static reference to the warp manager for accessing the warp system.</summary>
public static WarpManager Warps; public static WarpManager Warps;
@ -148,7 +148,7 @@ namespace TShockAPI
/// </summary> /// </summary>
public static event Action Initialized; public static event Action Initialized;
/// <summary>Version - The version required by the TerrariaAPI to be passed back for checking & loading the plugin.</summary> /// <summary>Version - The version required by the TerrariaAPI to be passed back for checking &amp; loading the plugin.</summary>
/// <value>value - The version number specified in the Assembly, based on the VersionNum variable set in this class.</value> /// <value>value - The version number specified in the Assembly, based on the VersionNum variable set in this class.</value>
public override Version Version public override Version Version
{ {

View file

@ -894,7 +894,7 @@ namespace TShockAPI
Main.recipe[i] = new Recipe(); Main.recipe[i] = new Recipe();
} }
/// <summary>Dumps a matrix of all permissions & all groups in Markdown table format.</summary> /// <summary>Dumps a matrix of all permissions &amp; all groups in Markdown table format.</summary>
/// <param name="path">The save destination.</param> /// <param name="path">The save destination.</param>
internal void DumpPermissionMatrix(string path) internal void DumpPermissionMatrix(string path)
{ {