mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
Bug fix
This commit is contained in:
parent
950d9bcfdc
commit
30e95f2d23
4 changed files with 13 additions and 4 deletions
|
|
@ -2434,7 +2434,9 @@ namespace MinecraftClient
|
|||
if (protocolversion >= Protocol18Handler.MC_1_19_3_Version
|
||||
&& playerKeyPair != null)
|
||||
handler.SendPlayerSession(playerKeyPair);
|
||||
CanSendMessage = true;
|
||||
|
||||
if (protocolversion < Protocol18Handler.MC_1_19_3_Version)
|
||||
CanSendMessage = true;
|
||||
|
||||
if (inventoryHandlingRequested)
|
||||
{
|
||||
|
|
@ -3480,6 +3482,11 @@ namespace MinecraftClient
|
|||
ConsoleIO.OnAutoCompleteDone(transactionId, result);
|
||||
}
|
||||
|
||||
public void OnDeclareCommands()
|
||||
{
|
||||
CanSendMessage = true;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Send a click container button packet to the server.
|
||||
/// Used for Enchanting table, Lectern, stone cutter and loom
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue