mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-29 19:52:55 +01:00
[Bleeding] Fix support for several entities in World.spawn(). Fixes BUKKIT-3284
This commit is contained in:
parent
2fc5d59303
commit
e0da846352
1 changed files with 8 additions and 8 deletions
|
@ -860,6 +860,9 @@ public class CraftWorld implements World {
|
|||
} else if (ThrownExpBottle.class.isAssignableFrom(clazz)) {
|
||||
entity = new EntityThrownExpBottle(world);
|
||||
entity.setPositionRotation(x, y, z, 0, 0);
|
||||
} else if (EnderPearl.class.isAssignableFrom(clazz)) {
|
||||
entity = new EntityEnderPearl(world);
|
||||
entity.setPositionRotation(x, y, z, 0, 0);
|
||||
} else if (ThrownPotion.class.isAssignableFrom(clazz)) {
|
||||
entity = new EntityPotion(world, x, y, z, CraftItemStack.asNMSCopy(new ItemStack(org.bukkit.Material.POTION, 1)));
|
||||
} else if (Fireball.class.isAssignableFrom(clazz)) {
|
||||
|
@ -971,7 +974,7 @@ public class CraftWorld implements World {
|
|||
}
|
||||
|
||||
if (entity != null) {
|
||||
entity.setLocation(x, y, z, pitch, yaw);
|
||||
entity.setLocation(x, y, z, yaw, pitch);
|
||||
}
|
||||
} else if (Hanging.class.isAssignableFrom(clazz)) {
|
||||
Block block = getBlockAt(location);
|
||||
|
@ -1020,13 +1023,10 @@ public class CraftWorld implements World {
|
|||
entity = new EntityExperienceOrb(world, x, y, z, 0);
|
||||
} else if (Weather.class.isAssignableFrom(clazz)) {
|
||||
// not sure what this can do
|
||||
entity = new EntityLightning(world, x, y, z);
|
||||
} else if (LightningStrike.class.isAssignableFrom(clazz)) {
|
||||
// what is this, I don't even
|
||||
} else if (Fish.class.isAssignableFrom(clazz)) {
|
||||
// this is not a fish, it's a bobber, and it's probably useless
|
||||
entity = new EntityFishingHook(world);
|
||||
entity.setLocation(x, y, z, pitch, yaw);
|
||||
if (LightningStrike.class.isAssignableFrom(clazz)) {
|
||||
entity = new EntityLightning(world, x, y, z);
|
||||
// what is this, I don't even
|
||||
}
|
||||
} else if (Firework.class.isAssignableFrom(clazz)) {
|
||||
entity = new EntityFireworks(world, x, y, z, null);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue