1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-19 19:25:48 +00:00
This commit is contained in:
TheBusyBiscuit 2020-05-15 16:57:47 +02:00
parent c4a3cdc833
commit 6553aeb3e1
2 changed files with 2 additions and 1 deletions

View File

@ -43,6 +43,7 @@
* Fixed #1908
* Fixed #1903
* Fixed Organic Food/Fertilizer not being recognized
* Fixed #1883
## Release Candidate 11 (25 Apr 2020)

View File

@ -123,7 +123,7 @@ public class AutoBreeder extends SlimefunItem implements InventoryBlock, EnergyN
if (n.isValid() && n instanceof Animals) {
Animals animal = (Animals) n;
return animal.isAdult() && !animal.isLoveMode();
return animal.isAdult() && animal.canBreed() && !animal.isLoveMode();
}
return false;