Crops no Spread
darudeg opened this issue ยท 3 comments
Quick description
Crops are not spreading
Related issues and searches
Mods and versions used
- Minecraft:1.12.2
- AgriCraft:2.12.0-1.12.0-a6
- InfinityLib:1.12.0
- [List the other required mods here]
Steps to replicate the issue
- Loaded up Project ozone 3
- Placed a Crop in a crop stick
- Right-clicked with watering can for ages on crop
- expected spread, no spread
Expectations and explanations
I think spread and mutating should have happened. I wanna grow 101010 crops boi.
Your environment
- How are you playing?
- Operating System: Windows
- Launcher: Twitch/Minecraft
- Modpack: Project Ozone 3
- What kind of server:
- Singleplayer
- Multiplayer
- Lan
- Game Modes:
- [X ] Survival
- Creative
- Save File:
- Brand new save
- Only an existing save
Links to crash logs, stack traces, etc
- https://gist.github.com/
- https://paste.ee/
- https://duckduckgo.com/?q=pastebin+alternatives
- Upload them somewhere, and then replace these links.
Screenshots (or videos)
I'm using same version of Agricraft & Infinitylib on a single player world. I've tried both existing & new saves. It seems like the plants will not spread to cross crops, but will spread to a single set of crops. I haven't played long enough to see how it affects stat gain or if crossbreeding works.
I believe I've found the issue:
In agricraft/tiles/TileEntityCrop.java, the function spread() has an incorrect condition.
if (!crop.isCrossCrop()) { // This should be if (crop.isCrossCrop())
crop.setSeed(this.seed);
return true;
}
(edit: formatting)