Plant Type for static plants

Status
Fixed
Issue description

Static Plants are missing the option to select a specific plant type. This makes it impossible to create dead bush/crop/netherwart-like plants without editing the code. While this is possible with growable plants, the plant can still be placed on top of itself.
(On a side note, since plants are just a specific kind of blocks, wouldn't they be able to inherit block properties such as tick rate, "when block added" event, particles etc?)

Issue comments

I will add an option for plant type for normal plants in future updates.

If one would like to do this now in code, this is the line in the code that needs to be changed:

(new WorldGenFlowers(((BlockFlower) block), BlockFlower.EnumFlowerType.DANDELION)).generate(world, random, new BlockPos(l6, i11, l14));

Regarding the second question, yes, they can inherit most of the properties. We will consider adding more of them in the future updates.