Disable terrain and movements when not handled

Related to #131
This commit is contained in:
ORelio 2016-03-12 11:01:25 +01:00
parent 199bbbabeb
commit e8097206d0
2 changed files with 6 additions and 0 deletions

View file

@ -47,7 +47,10 @@ namespace MinecraftClient.Protocol.Handlers
this.forgeInfo = ForgeInfo;
if (Settings.TerrainAndMovements && protocolversion > MC18Version)
{
ConsoleIO.WriteLineFormatted("§8Terrain & Movements currently not handled for that MC version.");
Settings.TerrainAndMovements = false;
}
}
private Protocol18Handler(TcpClient Client)