2020-09-24 14:49:02 +02:00
|
|
|
package com.minelittlepony.unicopia.mixin;
|
|
|
|
|
2021-08-04 15:38:03 +02:00
|
|
|
import org.jetbrains.annotations.Nullable;
|
2020-09-24 14:49:02 +02:00
|
|
|
|
|
|
|
import org.spongepowered.asm.mixin.Mixin;
|
|
|
|
import org.spongepowered.asm.mixin.injection.At;
|
|
|
|
import org.spongepowered.asm.mixin.injection.Inject;
|
|
|
|
import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable;
|
|
|
|
|
|
|
|
import com.minelittlepony.unicopia.entity.player.Pony;
|
|
|
|
|
|
|
|
import net.minecraft.entity.LivingEntity;
|
|
|
|
import net.minecraft.entity.ai.TargetPredicate;
|
|
|
|
|
|
|
|
@Mixin(TargetPredicate.class)
|
|
|
|
abstract class MixinTargetPredicate {
|
|
|
|
@Inject(method = "test", at = @At("HEAD"), cancellable = true)
|
|
|
|
public void onTest(@Nullable LivingEntity baseEntity, LivingEntity targetEntity, CallbackInfoReturnable<Boolean> info) {
|
2023-05-12 15:49:00 +02:00
|
|
|
Pony.of(targetEntity).ifPresent(pony -> {
|
|
|
|
if (!pony.canBeSeenBy(baseEntity)) {
|
|
|
|
info.setReturnValue(false);
|
|
|
|
}
|
|
|
|
});
|
2020-09-24 14:49:02 +02:00
|
|
|
}
|
|
|
|
}
|