check for baby sheep here

This commit is contained in:
hyperdefined
2026-04-02 16:23:57 -04:00
parent 47846df0e4
commit 5c54182301

View File

@@ -62,6 +62,11 @@ public class SheepShear implements Listener {
return;
}
// make sure they are not a baby
if (!sheep.isAdult()) {
return;
}
// make sure the sheep is not sheared
if (sheep.isSheared()) {
return;