Posted March 8, 20241 yr good days in the chicken it does areference to an entity place event triggering when chicken lays an egg if (!this.level().isClientSide && this.isAlive() && !this.isBaby() && !this.isChickenJockey() && --this.eggTime <= 0) { this.playSound(SoundEvents.CHICKEN_EGG, 1.0F, (this.random.nextFloat() - this.random.nextFloat()) * 0.2F + 1.0F); this.spawnAtLocation(Items.EGG); this.gameEvent(GameEvent.ENTITY_PLACE); this.eggTime = this.random.nextInt(6000) + 6000; } followin the trail it takes to a GameEvent class that just register events and dont works for suscribing events internally must be register under other name i was searching the events tree on net.minecraftforge.event but no avail @SubscribeEvent public static void entityPlace(GameEvent event) { } ------- wheres the event when a chiken layes an egg ??
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.