Bugfixes to the Looking and Movement. Added General prompt engineer.

This commit is contained in:
Anon 2026-04-03 19:54:26 +02:00
parent dfef24ad10
commit 691057fe13
6 changed files with 498 additions and 15 deletions

View file

@ -1176,6 +1176,7 @@ namespace MinecraftClient.Scripting
protected void LookAtLocation(Location location)
{
Handler.UpdateLocation(Handler.GetCurrentLocation(), location);
Handler.SendLocationUpdate();
}
/// <summary>
@ -1186,6 +1187,7 @@ namespace MinecraftClient.Scripting
protected void LookAtLocation(float yaw, float pitch)
{
Handler.UpdateLocation(Handler.GetCurrentLocation(), yaw, pitch);
Handler.SendLocationUpdate();
}
/// <summary>