fix some doc strings

This commit is contained in:
TheSnoozer 2019-10-03 09:46:08 +02:00
parent 851f634fae
commit d4aa63d1d3
3 changed files with 5 additions and 5 deletions

View file

@ -535,7 +535,7 @@ namespace MinecraftClient
/// Disconnect from the server and restart the program
/// It will unload and reload all the bots and then reconnect to the server
/// </summary>
/// <param name="attempts">In case of failure, maximum extra attempts before aborting</param>
/// <param name="ExtraAttempts">In case of failure, maximum extra attempts before aborting</param>
/// <param name="delaySeconds">Optional delay, in seconds, before restarting</param>
protected void ReconnectToTheServer(int ExtraAttempts = 3, int delaySeconds = 0)
{

View file

@ -312,7 +312,7 @@ namespace MinecraftClient
/// </summary>
/// <param name="str">String to write</param>
/// <param name="acceptnewlines">If false, space are printed instead of newlines</param>
/// <param name="displayTimestamps">
/// <param name="displayTimestamp">
/// If false, no timestamp is prepended.
/// If true, "hh-mm-ss" timestamp will be prepended.
/// If unspecified, value is retrieved from EnableTimestamps.

View file

@ -25,8 +25,8 @@ namespace MinecraftClient.Protocol.Handlers
/// Initialize a new Forge protocol handler
/// </summary>
/// <param name="forgeInfo">Forge Server Information</param>
/// <param name="protocolversion">Minecraft protocol version</param>
/// <param name="datatypes">Minecraft data types handler</param>
/// <param name="protocolVersion">Minecraft protocol version</param>
/// <param name="dataTypes">Minecraft data types handler</param>
public Protocol18Forge(ForgeInfo forgeInfo, int protocolVersion, DataTypes dataTypes, Protocol18Handler protocol18, IMinecraftComHandler mcHandler)
{
this.forgeInfo = forgeInfo;
@ -102,7 +102,7 @@ namespace MinecraftClient.Protocol.Handlers
/// </summary>
/// <param name="channel">Plugin message channel</param>
/// <param name="packetData">Plugin message data</param>
/// <param name="currentdimension">Current world dimension</param>
/// <param name="currentDimension">Current world dimension</param>
/// <returns>TRUE if the plugin message was recognized and handled</returns>
public bool HandlePluginMessage(string channel, List<byte> packetData, ref int currentDimension)
{