Sickles are not working correctly
pal1093 opened this issue · 5 comments
Tried it with different versions of PR, Forge and CCC.
Sickles are currently not working correctly. Don´t know if this is a known error. Sickles only work for leaves. Whenever I use it on a ground crop it only destroys one crop.
Sickles only work for leaves and flowers, maybe it should work for crops too @MrTJP ?
Ahh I see what's wrong here. Before MC 1.7, BlockCrops
extended BlockFlower
, which PR uses to check for crops. But since 1.7, BlockCrops
extends BlockBush
. Perhaps it should check for instances of BlockCrops
, BlockBush
or one of it's interfaces (IGrowable
, IPlantable
)
Nice catch simon, @MrTJP please fix that.