Posted August 15, 201411 yr I am making a mod that completely revolves around sheep, I was looking for a way to make only my sheep spawn. Is there a certain event I should call or how would I go about doing this.
August 15, 201411 yr LivingSpawnEvent Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support. 1.12 -> 1.13 primer by williewillus. 1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support. http://www.howoldisminecraft1710.today/
August 15, 201411 yr I use EntityJoinWorldEvent (it's a MinecraftForge event). If I were you, I'd check if the "event.entity" that is spawned is an instance of EntitySheep. I then would cancel the event to cancel the spawning of the sheep: event.setCancelled(true); If you want, you can use event.world (as the parameter in your custom Sheep class) and spawn it in the world in place of the vanilla sheep that spawned (event.entity.posX, event.entity.posY, event.entity.posZ
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.