package com.atsuishio.superbwarfare.headshot; import net.minecraft.world.entity.LivingEntity; import net.minecraft.world.phys.AABB; import javax.annotation.Nullable; /** * Author: MrCrayfish */ public class NoChildRotatedHeadshotBox extends RotatedHeadshotBox { public NoChildRotatedHeadshotBox(double headSize, double headYOffset, double headZOffset, boolean rotatePitch, boolean rotateYaw) { super(headSize, headYOffset, headZOffset, rotatePitch, rotateYaw); } public NoChildRotatedHeadshotBox(double headWidth, double headHeight, double headYOffset, double headZOffset, boolean rotatePitch, boolean rotateYaw) { super(headWidth, headHeight, headYOffset, headZOffset, rotatePitch, rotateYaw); } @Nullable @Override public AABB getHeadshotBox(T entity) { if (entity.isBaby()) return null; return super.getHeadshotBox(entity); } }