Package net.minecraftforge.event.entity.living.ZombieEvent

Examples of net.minecraftforge.event.entity.living.ZombieEvent.SummonAidEvent


        return event;
    }

    public static SummonAidEvent fireZombieSummonAid(EntityZombie zombie, World world, int x, int y, int z, EntityLivingBase attacker, double summonChance)
    {
        SummonAidEvent summonEvent = new SummonAidEvent(zombie, world, x, y, z, attacker, summonChance);
        MinecraftForge.EVENT_BUS.post(summonEvent);
        return summonEvent;
    }
View Full Code Here

TOP

Related Classes of net.minecraftforge.event.entity.living.ZombieEvent.SummonAidEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.