blob: cc1edaf73087c8ded183839187eaac2a8dd98d44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
package com.thatgravyboat.skyblockhud.mixins;
import com.thatgravyboat.skyblockhud.tracker.KillTrackerHandler;
import net.minecraft.client.Minecraft;
import net.minecraft.entity.Entity;
import net.minecraft.entity.projectile.EntityArrow;
import net.minecraft.util.MovingObjectPosition;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.Shadow;
import org.spongepowered.asm.mixin.injection.At;
import org.spongepowered.asm.mixin.injection.ModifyVariable;
@Mixin(EntityArrow.class)
public class MixinEntityArrow {
//Disabled as kill tracker stuff not fully added yet.
@Shadow
public Entity shootingEntity;
@ModifyVariable(method = "onUpdate", at = @At(value = "STORE", ordinal = 1))
public MovingObjectPosition onUpdate(MovingObjectPosition position) {
if (position != null && position.entityHit != null && this.shootingEntity != null && this.shootingEntity.getUniqueID().equals(Minecraft.getMinecraft().thePlayer.getUniqueID())) {
KillTrackerHandler.attackedEntities.add(position.entityHit.getUniqueID());
}
return position;
}
}
|