Reorganize methods in McClient.cs

Tyding up the class as it is becoming quite large
This commit is contained in:
ORelio 2020-06-20 15:18:34 +02:00
parent 2add4030f4
commit f30dc4464c
5 changed files with 880 additions and 866 deletions

View file

@ -15,14 +15,14 @@ namespace MinecraftClient.Commands
{
if (sneaking)
{
var result = handler.sendEntityAction(Protocol.EntityActionType.StopSneaking);
var result = handler.SendEntityAction(Protocol.EntityActionType.StopSneaking);
if (result)
sneaking = false;
return result ? "You aren't sneaking anymore" : "Fail";
}
else
{
var result = handler.sendEntityAction(Protocol.EntityActionType.StartSneaking);
var result = handler.SendEntityAction(Protocol.EntityActionType.StartSneaking);
if (result)
sneaking = true;
return result ? "You are sneaking now" : "Fail";