Chickens

Chickens

17M Downloads

Spawn quartz and lava chicken in Neather

setycz opened this issue ยท 1 comments

commented

Try getCanSpawnHere() ???

or

@SubscribeEvent
public void onCheckSpawn(CheckSpawn ewt) {
    if (ewt.entityLiving == null) {
        return;
    }
    if (ewt.entityLiving instanceof EntityChickensChicken) {
        //ewt.setResult(Event.Result.DENY);
    }
}
commented