3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-16 04:50:05 +01:00

SPIGOT-2908: Correctly spawn LlamaSpit

Dieser Commit ist enthalten in:
md_5 2016-12-10 12:10:28 +11:00
Ursprung 622630c823
Commit 03c4bf2244

Datei anzeigen

@ -946,7 +946,7 @@ public class CraftWorld implements World {
entity = new EntityShulkerBullet(world);
entity.setPositionRotation(x, y, z, yaw, pitch);
} else if (LlamaSpit.class.isAssignableFrom(clazz)) {
entity = new EntityLlama(world);
entity = new EntityLlamaSpit(world);
entity.setPositionRotation(x, y, z, yaw, pitch);
}
} else if (Minecart.class.isAssignableFrom(clazz)) {