
ModsJava
DolphinsWithGills
Prevents dryout and drowning damage for dolphins. Free Minecraft Java mod for 1.13, 1.13.1, 1.13.2.
⬇ Download on ModrinthA 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
- Ships as DolphinsWithGills-1.0-SNAPSHOT.jar — drop this file into the mods folder
- Download size: 4 KB
- Download link checked 19 Aug 2026 — working
These come from our own check of the pack file, not from the source page.