mirror of
https://github.com/PurpurMC/Purpur.git
synced 2026-02-17 08:27:43 +01:00
MC-121706 - Fix mobs not looking up and down when strafing
This commit is contained in:
@@ -1,22 +0,0 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Krakenied <Krakenied1@gmail.com>
|
|
||||||
Date: Sun, 9 Oct 2022 01:50:39 +0200
|
|
||||||
Subject: [PATCH] MC-121706 - Fix mobs not looking up and down when strafing
|
|
||||||
|
|
||||||
|
|
||||||
diff --git a/net/minecraft/world/entity/ai/goal/RangedBowAttackGoal.java b/net/minecraft/world/entity/ai/goal/RangedBowAttackGoal.java
|
|
||||||
index 515c1f671cb2c3a7cc23053aedf404bbbe77af3e..42a1e5b9c08a9245dd0ce6d4025e3bb5d60feb62 100644
|
|
||||||
--- a/net/minecraft/world/entity/ai/goal/RangedBowAttackGoal.java
|
|
||||||
+++ b/net/minecraft/world/entity/ai/goal/RangedBowAttackGoal.java
|
|
||||||
@@ -116,9 +116,9 @@ public class RangedBowAttackGoal<T extends Monster & RangedAttackMob> extends Go
|
|
||||||
}
|
|
||||||
|
|
||||||
this.mob.lookAt(livingEntity, 30.0F, 30.0F);
|
|
||||||
- } else {
|
|
||||||
+ } //else { // Purpur - fix MC-121706
|
|
||||||
this.mob.getLookControl().setLookAt(livingEntity, 30.0F, 30.0F);
|
|
||||||
- }
|
|
||||||
+ //} // Purpur
|
|
||||||
|
|
||||||
if (this.mob.isUsingItem()) {
|
|
||||||
if (!bl && this.seeTime < -60) {
|
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
--- a/net/minecraft/world/entity/ai/goal/RangedBowAttackGoal.java
|
||||||
|
+++ b/net/minecraft/world/entity/ai/goal/RangedBowAttackGoal.java
|
||||||
|
@@ -116,9 +_,9 @@
|
||||||
|
}
|
||||||
|
|
||||||
|
this.mob.lookAt(target, 30.0F, 30.0F);
|
||||||
|
- } else {
|
||||||
|
+ } //else { // Purpur - MC-121706 - Fix mobs not looking up and down when strafing
|
||||||
|
this.mob.getLookControl().setLookAt(target, 30.0F, 30.0F);
|
||||||
|
- }
|
||||||
|
+ //} // Purpur - MC-121706 - Fix mobs not looking up and down when strafing
|
||||||
|
|
||||||
|
if (this.mob.isUsingItem()) {
|
||||||
|
if (!hasLineOfSight && this.seeTime < -60) {
|
||||||
Reference in New Issue
Block a user