diff --git a/nms/v1_19_R3/src/main/java/com/volmit/iris/core/nms/v1_19_R3/NMSBinding.java b/nms/v1_19_R3/src/main/java/com/volmit/iris/core/nms/v1_19_R3/NMSBinding.java index 78d8cb1a5..8a2728a53 100644 --- a/nms/v1_19_R3/src/main/java/com/volmit/iris/core/nms/v1_19_R3/NMSBinding.java +++ b/nms/v1_19_R3/src/main/java/com/volmit/iris/core/nms/v1_19_R3/NMSBinding.java @@ -491,6 +491,9 @@ public class NMSBinding implements INMSBinding { @Override public Entity spawnEntity(Location location, EntityType type, CreatureSpawnEvent.SpawnReason reason) { + if (type == EntityType.CAMEL) { + return null; + } return ((CraftWorld) location.getWorld()).spawn(location, type.getEntityClass(), null, reason); }