DragonEggRespawn
This plugin enables the spawning of multiple dragon eggs. Each time an enderdragon is killed, the DragonEggFormEvent is triggered without getting canceled.
The source code
@EventHandler
public void onDragonEggForm(EnderDragonChangePhaseEvent e) {
DragonBattle db = e.getEntity().getDragonBattle();
if(db == null)
return;
db.setPreviouslyKilled(false);
}

