Fix onPlayerUpdate not being called
This commit is contained in:
parent
d8a99f8459
commit
1332dd573e
@ -1,7 +1,6 @@
|
||||
package baritone.bot.behavior.impl;
|
||||
|
||||
import baritone.bot.behavior.Behavior;
|
||||
import baritone.bot.event.events.TickEvent;
|
||||
import baritone.bot.utils.Rotation;
|
||||
|
||||
public class LookBehavior extends Behavior {
|
||||
@ -22,11 +21,6 @@ public class LookBehavior extends Behavior {
|
||||
this.target = target;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onTick(TickEvent event) {
|
||||
this.onPlayerUpdate();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onPlayerUpdate() {
|
||||
if (target != null) {
|
||||
|
@ -30,8 +30,10 @@ public class MixinEntityPlayerSP {
|
||||
@Inject(
|
||||
method = "onUpdate",
|
||||
at = @At(
|
||||
value = "INVOKE_ASSIGN",
|
||||
target = "Lnet/minecraft/client/entity/AbstractClientPlayer;onUpdate()V"
|
||||
value = "INVOKE",
|
||||
target = "net/minecraft/client/entity/EntityPlayerSP.isRiding()Z",
|
||||
shift = At.Shift.BY,
|
||||
by = -3
|
||||
)
|
||||
)
|
||||
private void onUpdate(CallbackInfo ci) {
|
||||
|
Loading…
Reference in New Issue
Block a user