Compatibility
Minecraft: Java Edition
26.2
Platforms
Supported environments
Client-side
Links
Tags
Creators
Details
Licensed MIT
Published 2 days ago
A client-side, single mixin mod that prevents the player from directly hitting villagers.
@Mixin(Villager.class)
public abstract class VillagerMixin extends Entity {
@Override
public boolean isAttackable() {
return false;
}
}
That's all. If you even care.


