From d4aa63d1d390f46f30b44c7a1e2932a31e0c09e8 Mon Sep 17 00:00:00 2001 From: TheSnoozer Date: Thu, 3 Oct 2019 09:46:08 +0200 Subject: [PATCH] fix some doc strings --- MinecraftClient/ChatBot.cs | 2 +- MinecraftClient/ConsoleIO.cs | 2 +- MinecraftClient/Protocol/Handlers/Protocol18Forge.cs | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/MinecraftClient/ChatBot.cs b/MinecraftClient/ChatBot.cs index 4f027e30..b5300a48 100644 --- a/MinecraftClient/ChatBot.cs +++ b/MinecraftClient/ChatBot.cs @@ -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 /// - /// In case of failure, maximum extra attempts before aborting + /// In case of failure, maximum extra attempts before aborting /// Optional delay, in seconds, before restarting protected void ReconnectToTheServer(int ExtraAttempts = 3, int delaySeconds = 0) { diff --git a/MinecraftClient/ConsoleIO.cs b/MinecraftClient/ConsoleIO.cs index 225416a9..2ed377d6 100644 --- a/MinecraftClient/ConsoleIO.cs +++ b/MinecraftClient/ConsoleIO.cs @@ -312,7 +312,7 @@ namespace MinecraftClient /// /// String to write /// If false, space are printed instead of newlines - /// + /// /// If false, no timestamp is prepended. /// If true, "hh-mm-ss" timestamp will be prepended. /// If unspecified, value is retrieved from EnableTimestamps. diff --git a/MinecraftClient/Protocol/Handlers/Protocol18Forge.cs b/MinecraftClient/Protocol/Handlers/Protocol18Forge.cs index 6e452439..facc7b65 100644 --- a/MinecraftClient/Protocol/Handlers/Protocol18Forge.cs +++ b/MinecraftClient/Protocol/Handlers/Protocol18Forge.cs @@ -25,8 +25,8 @@ namespace MinecraftClient.Protocol.Handlers /// Initialize a new Forge protocol handler /// /// Forge Server Information - /// Minecraft protocol version - /// Minecraft data types handler + /// Minecraft protocol version + /// Minecraft data types handler public Protocol18Forge(ForgeInfo forgeInfo, int protocolVersion, DataTypes dataTypes, Protocol18Handler protocol18, IMinecraftComHandler mcHandler) { this.forgeInfo = forgeInfo; @@ -102,7 +102,7 @@ namespace MinecraftClient.Protocol.Handlers /// /// Plugin message channel /// Plugin message data - /// Current world dimension + /// Current world dimension /// TRUE if the plugin message was recognized and handled public bool HandlePluginMessage(string channel, List packetData, ref int currentDimension) {