Fix bad XML(unescaped ampersand)
This commit is contained in:
parent
aa5cb13247
commit
350d76c315
2 changed files with 3 additions and 3 deletions
|
|
@ -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 & 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 & 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
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -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 & 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)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue