From a78623bf84bbe143d72afc6e47a881b296472d90 Mon Sep 17 00:00:00 2001 From: CarbonNeuron Date: Sun, 3 May 2020 10:52:58 -0500 Subject: [PATCH] Rename SendAction to SendEntityAction in ChatBot.cs --- MinecraftClient/ChatBot.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MinecraftClient/ChatBot.cs b/MinecraftClient/ChatBot.cs index 358c4aed..bf125fc2 100644 --- a/MinecraftClient/ChatBot.cs +++ b/MinecraftClient/ChatBot.cs @@ -674,12 +674,12 @@ namespace MinecraftClient /// protected bool Sneak(bool on) { - return SendAction(on ? Protocol.ActionType.StartSneaking : Protocol.ActionType.StopSneaking); + return SendEntityAction(on ? Protocol.ActionType.StartSneaking : Protocol.ActionType.StopSneaking); } /// /// Send Entity Action /// - private bool SendAction(Protocol.ActionType action) + private bool SendEntityAction(Protocol.ActionType action) { return Handler.sendEntityAction(action); }