I am currently developing imiPet, a free pet plugin. I have no problem testing, but some users have these bugs: 1.entity spawn being cancelled Actually, entity use the wolf type, Users say that wolf eggs can spawn, But it disappears after the entity is spawn, I suspect that for some reason preventing spawning (such as the Residence plugin preventing animal spawning) So, I want to know what scheme can force the spawn of the entity, and will not be prevented from spawning. 2.translucent entity Picture says it all(Picture from a user). I'm troubled by this, and I can't find the cause and solution. Thank you.
1) use @EventHandler(ignoreCancelled = true) next to your entity spawn event. Therefore, even if the event is cancelled, your code will still run. 2) Gonna need more info to help you with that. Maybe try showing some code related to your issue.
If you can't see it, let the user know that you can't recreate the issue, and ask for more information. Server Version, Plugins, Current Gamemode, etc.
I seem to be prematurely happy, and users have reported BUG: Although the entity will not disappear, the entity will be deleted after a while. I suspect it is a plugin like clear, how can this prevent it from being cleared?
l Maybe try listening for EntityDeathEvent, and see if it is one of your armor stands. If it is, cancel the event.