use of net.minecraft.server.v1_16_R2.EntityLiving in project Citizens2 by CitizensDev.
the class NMSImpl method setHeadYaw.
@Override
public void setHeadYaw(org.bukkit.entity.Entity entity, float yaw) {
if (!(entity instanceof LivingEntity))
return;
EntityLiving handle = (EntityLiving) getHandle(entity);
yaw = Util.clampYaw(yaw);
handle.aJ = yaw;
if (!(handle instanceof EntityHuman))
handle.aI = yaw;
handle.aK = yaw;
}
use of net.minecraft.server.v1_16_R2.EntityLiving in project Citizens2 by CitizensDev.
the class NMSImpl method openHorseScreen.
@Override
public void openHorseScreen(Tameable horse, Player equipper) {
EntityLiving handle = NMSImpl.getHandle((LivingEntity) horse);
EntityLiving equipperHandle = NMSImpl.getHandle(equipper);
if (handle == null || equipperHandle == null)
return;
boolean wasTamed = horse.isTamed();
horse.setTamed(true);
((EntityHorse) handle).g((EntityHuman) equipperHandle);
horse.setTamed(wasTamed);
}
use of net.minecraft.server.v1_16_R2.EntityLiving in project Citizens2 by CitizensDev.
the class NMSImpl method setKnockbackResistance.
@Override
public void setKnockbackResistance(LivingEntity entity, double d) {
EntityLiving handle = NMSImpl.getHandle(entity);
handle.getAttributeInstance(GenericAttributes.c).setValue(d);
}
use of net.minecraft.server.v1_16_R2.EntityLiving in project Citizens2 by CitizensDev.
the class NMSImpl method setHeadYaw.
@Override
public void setHeadYaw(org.bukkit.entity.Entity entity, float yaw) {
if (!(entity instanceof LivingEntity))
return;
EntityLiving handle = (EntityLiving) getHandle(entity);
yaw = Util.clampYaw(yaw);
handle.aO = yaw;
if (!(handle instanceof EntityHuman)) {
handle.aN = yaw;
}
handle.aP = yaw;
}
use of net.minecraft.server.v1_16_R2.EntityLiving in project Citizens2 by CitizensDev.
the class NMSImpl method openHorseScreen.
@Override
public void openHorseScreen(Tameable horse, Player equipper) {
EntityLiving handle = NMSImpl.getHandle((LivingEntity) horse);
EntityLiving equipperHandle = NMSImpl.getHandle(equipper);
if (handle == null || equipperHandle == null)
return;
boolean wasTamed = horse.isTamed();
horse.setTamed(true);
((EntityHorse) handle).f((EntityHuman) equipperHandle);
horse.setTamed(wasTamed);
}
Aggregations