Skip to content

Commit

Permalink
Fix crash on launch
Browse files Browse the repository at this point in the history
  • Loading branch information
cqb13 committed Apr 13, 2024
1 parent f717a83 commit dec712b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
package cqb13.NumbyHack.mixins.meteor;

import meteordevelopment.meteorclient.systems.modules.combat.CrystalAura;
import net.minecraft.entity.player.PlayerEntity;
import net.minecraft.entity.LivingEntity;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.gen.Accessor;

@Mixin(CrystalAura.class)
public interface CrystalAuraAccessor {
@Accessor("bestTarget")
PlayerEntity bestTarget();
LivingEntity bestTarget();

@Accessor(value = "bestTargetDamage", remap = false)
double bestTargetDamage();
Expand Down

0 comments on commit dec712b

Please sign in to comment.