use of net.minecraft.server.v1_16_R3.EntityStrider in project RoseStacker by Rosewood-Development.
the class NMSHandlerImpl method createCreature.
/**
* Duplicate of {@link EntityTypes#createCreature(WorldServer, NBTTagCompound, IChatBaseComponent, EntityHuman, BlockPosition, EnumMobSpawn, boolean, boolean)}.
* Contains a patch to prevent chicken jockeys from spawning and to not play the mob sound upon creation.
*/
private <T extends Entity> T createCreature(EntityTypes<T> entityTypes, WorldServer worldserver, NBTTagCompound nbttagcompound, IChatBaseComponent ichatbasecomponent, EntityHuman entityhuman, BlockPosition blockposition, EnumMobSpawn enummobspawn) {
T newEntity;
if (entityTypes == EntityTypes.SPIDER) {
newEntity = (T) new SoloEntitySpider((EntityTypes<? extends EntitySpider>) entityTypes, worldserver);
} else if (entityTypes == EntityTypes.STRIDER) {
newEntity = (T) new SoloEntityStrider((EntityTypes<? extends EntityStrider>) entityTypes, worldserver);
} else {
newEntity = entityTypes.a(worldserver);
}
if (newEntity == null) {
return null;
} else {
if (field_Entity_spawnReason != null) {
try {
field_Entity_spawnReason.set(newEntity, this.toBukkitSpawnReason(enummobspawn));
} catch (IllegalAccessException ignored) {
}
}
newEntity.setPositionRotation(blockposition.getX() + 0.5D, blockposition.getY(), blockposition.getZ() + 0.5D, MathHelper.g(worldserver.random.nextFloat() * 360.0F), 0.0F);
if (newEntity instanceof EntityInsentient) {
EntityInsentient entityinsentient = (EntityInsentient) newEntity;
entityinsentient.aC = entityinsentient.yaw;
entityinsentient.aA = entityinsentient.yaw;
GroupDataEntity groupDataEntity = null;
if (entityTypes == EntityTypes.DROWNED || entityTypes == EntityTypes.HUSK || entityTypes == EntityTypes.ZOMBIE_VILLAGER || entityTypes == EntityTypes.ZOMBIFIED_PIGLIN || entityTypes == EntityTypes.ZOMBIE) {
// Don't allow chicken jockeys to spawn
groupDataEntity = new EntityZombie.GroupDataZombie(EntityZombie.a(worldserver.getRandom()), false);
}
entityinsentient.prepare(worldserver, worldserver.getDamageScaler(entityinsentient.getChunkCoordinates()), enummobspawn, groupDataEntity, nbttagcompound);
}
if (ichatbasecomponent != null && newEntity instanceof EntityLiving) {
newEntity.setCustomName(ichatbasecomponent);
}
try {
EntityTypes.a(worldserver, entityhuman, newEntity, nbttagcompound);
} catch (Throwable ignored) {
}
return newEntity;
}
}
use of net.minecraft.server.v1_16_R3.EntityStrider in project RoseStacker by Rosewood-Development.
the class NMSHandlerImpl method createCreature.
/**
* Duplicate of {@link EntityTypes#createCreature(WorldServer, NBTTagCompound, IChatBaseComponent, EntityHuman, BlockPosition, EnumMobSpawn, boolean, boolean)}.
* Contains a patch to prevent chicken jockeys from spawning and to not play the mob sound upon creation.
*/
private <T extends Entity> T createCreature(EntityTypes<T> entityTypes, WorldServer worldserver, NBTTagCompound nbttagcompound, IChatBaseComponent ichatbasecomponent, EntityHuman entityhuman, BlockPosition blockposition, EnumMobSpawn enummobspawn) {
T newEntity;
if (entityTypes == EntityTypes.SPIDER) {
newEntity = (T) new SoloEntitySpider((EntityTypes<? extends EntitySpider>) entityTypes, worldserver);
} else if (entityTypes == EntityTypes.STRIDER) {
newEntity = (T) new SoloEntityStrider((EntityTypes<? extends EntityStrider>) entityTypes, worldserver);
} else {
newEntity = entityTypes.a(worldserver);
}
if (newEntity == null) {
return null;
} else {
if (field_Entity_spawnReason != null) {
try {
field_Entity_spawnReason.set(newEntity, this.toBukkitSpawnReason(enummobspawn));
} catch (IllegalAccessException ignored) {
}
}
newEntity.setPositionRotation(blockposition.getX() + 0.5D, blockposition.getY(), blockposition.getZ() + 0.5D, MathHelper.g(worldserver.random.nextFloat() * 360.0F), 0.0F);
if (newEntity instanceof EntityInsentient) {
EntityInsentient entityinsentient = (EntityInsentient) newEntity;
entityinsentient.aC = entityinsentient.yaw;
entityinsentient.aA = entityinsentient.yaw;
GroupDataEntity groupDataEntity = null;
if (entityTypes == EntityTypes.DROWNED || entityTypes == EntityTypes.HUSK || entityTypes == EntityTypes.ZOMBIE_VILLAGER || entityTypes == EntityTypes.ZOMBIFIED_PIGLIN || entityTypes == EntityTypes.ZOMBIE) {
// Don't allow chicken jockeys to spawn
groupDataEntity = new EntityZombie.GroupDataZombie(EntityZombie.a(worldserver.getRandom()), false);
}
entityinsentient.prepare(worldserver, worldserver.getDamageScaler(entityinsentient.getChunkCoordinates()), enummobspawn, groupDataEntity, nbttagcompound);
}
if (ichatbasecomponent != null && newEntity instanceof EntityLiving) {
newEntity.setCustomName(ichatbasecomponent);
}
try {
EntityTypes.a(worldserver, entityhuman, newEntity, nbttagcompound);
} catch (Throwable ignored) {
}
return newEntity;
}
}
Aggregations