mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-11-07 17:36:07 +00:00
Fix EntityHandling not disabled when version unsupported
This commit is contained in:
parent
ef9064c91e
commit
ddcc9ee8e6
1 changed files with 1 additions and 1 deletions
|
|
@ -76,7 +76,7 @@ namespace MinecraftClient.Protocol.Handlers
|
||||||
handler.SetInventoryEnabled(false);
|
handler.SetInventoryEnabled(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(handler.GetEntityHandlingEnabled() && protocolversion < MC1122Version)
|
if(handler.GetEntityHandlingEnabled() && protocolversion <= MC1122Version)
|
||||||
{
|
{
|
||||||
ConsoleIO.WriteLineFormatted("§8Entities are currently not handled for that MC version.");
|
ConsoleIO.WriteLineFormatted("§8Entities are currently not handled for that MC version.");
|
||||||
handler.SetEntityHandlingEnabled(false);
|
handler.SetEntityHandlingEnabled(false);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue