
No More Underwater dismount
This compact mod solves one specific problem in Minecraft - it prevents automatic dismounting from most animals when submerged underwater. Now you can safely cross water bodies riding your pets without fear of unexpected falling.
Frequently Asked Questions
Question: But animals and I can still drown? Answer: Yes, that's correct. This mod does not disable the drowning mechanic - it only prevents forced dismounting underwater.
Question: Does the server need to have this mod? Answer: Yes, for proper operation, installation is required both on the client and server.
Question: Why doesn't this work with boats? Answer: The mod's functionality is specifically limited to animals only and does not extend to boats.
Question: Is the mod compatible with other modifications? Answer: Yes, compatibility is good. Tested with Dragon Mounts: Legacy - works correctly. Conflicts with other mods are unlikely.
Question: Can I get the source code? Answer: The entire mod code is quite compact, but it took time to find the necessary solutions:
@Mixin(LivingEntity.class)
public class MixinLivingEntity {
@Overwrite
public boolean rideableUnderWater() {
return true;
}
}
Question: Why isn't such a small mod included in larger collections? Answer: This is an intentional decision - the mod solves one specific task without unnecessary complexity.
Question: Will there be ports for other versions and loaders? Answer: Porting is possible with sufficient requests, however for versions like 1.8 this is unlikely.
Question: I found a bug in the mod. Answer: What specific issues have you discovered?