HomeJavaModsDolphinsWithGills
DolphinsWithGills
ModsJava

DolphinsWithGills

by DrBot · on Modrinth

Prevents dryout and drowning damage for dolphins. Free Minecraft Java mod for 1.13, 1.13.1, 1.13.2.

⬇ Download on Modrinth

A simple plugin that prevents dryout and drowning damage for dolphins

    @EventHandler
    public void onEntityDamage(EntityDamageEvent event) {
        if (event.getEntityType() != EntityType.DOLPHIN) return;
        DamageCause cause = event.getCause();
        if (cause == DamageCause.DROWNING) event.setCancelled(true);
        if (cause == DamageCause.DRYOUT) event.setCancelled(true);
    }
Verified by MCModsHub

These come from our own check of the pack file, not from the source page.

Explore more