diff --git a/MinecraftClient/Crypto/CryptoHandler.cs b/MinecraftClient/Crypto/CryptoHandler.cs index ae46ccf5..c917ec17 100644 --- a/MinecraftClient/Crypto/CryptoHandler.cs +++ b/MinecraftClient/Crypto/CryptoHandler.cs @@ -16,7 +16,7 @@ namespace MinecraftClient.Crypto /// /// Get a cryptographic service for encrypting data using the server's RSA public key /// - /// Byte array containing the encoded key + /// Byte array containing the encoded key /// Returns the corresponding RSA Crypto Service public static RSACryptoServiceProvider DecodeRSAPublicKey(byte[] x509key) diff --git a/MinecraftClient/McTcpClient.cs b/MinecraftClient/McTcpClient.cs index e8ff5a7f..287e8d41 100644 --- a/MinecraftClient/McTcpClient.cs +++ b/MinecraftClient/McTcpClient.cs @@ -287,7 +287,6 @@ namespace MinecraftClient /// Perform an internal MCC command (not a server command, use SendText() instead for that!) /// /// The command - /// Set to true if command was sent by the user using the command prompt /// May contain a confirmation or error message after processing the command, or "" otherwise. /// TRUE if the command was indeed an internal MCC command public bool PerformInternalCommand(string command, ref string response_msg) @@ -565,7 +564,7 @@ namespace MinecraftClient /// or if a ChatBot whishes to update the player's location. /// /// The new location - /// Block coordinates to look at + /// Block coordinates to look at public void UpdateLocation(Location location, Location lookAtLocation) { double dx = lookAtLocation.X - (location.X - 0.5); @@ -640,7 +639,6 @@ namespace MinecraftClient /// /// Text received /// TRUE if the text is JSON-Encoded - /// Links embedded in text public void OnTextReceived(string text, bool isJson) { lock (lastKeepAliveLock) diff --git a/MinecraftClient/Protocol/IMinecraftCom.cs b/MinecraftClient/Protocol/IMinecraftCom.cs index 1a3c8c2e..0e5d55e8 100644 --- a/MinecraftClient/Protocol/IMinecraftCom.cs +++ b/MinecraftClient/Protocol/IMinecraftCom.cs @@ -25,7 +25,6 @@ namespace MinecraftClient.Protocol /// /// Disconnect from the server /// - /// Reason void Disconnect(); ///