List of usage examples for net.minecraftforge.event.entity EntityMountEvent getEntityBeingMounted
public Entity getEntityBeingMounted()
From source file:necauqua.mods.cm.Handlers.java
License:Apache License
@SubscribeEvent public void onEntityMount(EntityMountEvent e) { // todo this is temp, remove after riding fix (not soon) if (e.isMounting() && (getSize(e.getEntityMounting()) != 1.0F || getSize(e.getEntityBeingMounted()) != 1.0F)) { e.setCanceled(true);/*from w w w. j ava 2s .c o m*/ } }