Jump to content

Recommended Posts

Posted

I've made a custom dirt/grass block and I've made a custom BlockFlower class and in that I've added my custom dirt/grass block to

    protected boolean canThisPlantGrowOnThisBlockID(int par1)

 

but the plant still doesn't grow on it

 

I THINK it has something to do with

 

   public boolean canBlockStay(World par1World, int par2, int par3, int par4)
    {
        Block soil = blocksList[par1World.getBlockId(par2, par3 - 1, par4)];
        return (par1World.getFullBlockLightValue(par2, par3, par4) >= 8 || par1World.canBlockSeeTheSky(par2, par3, par4)) && 
                (soil != null && soil.canSustainPlant(par1World, par2, par3 - 1, par4, ForgeDirection.UP, this));
    }

 

I've checked the vanilla grass block and there's nothing in there that it uses to enable plants to grow on it, so I know it's all contained within the flower class and I'm relatively certain that it's something to do with the above code, but I don't know what I'm supposed to change or how I'm supposed to change it.

 

Can anyone help?

Posted

In which you mean I need to look in the Block.class file, find the "canSustainPlant" method and make my own?

 

okay, then how do I call it in the canBlockStay method?

or, how can I create a new EnumPlantType so that I can avoid having to make my own canSustainPlant and just add my custom dirt/grass to the already existing list?

Posted

Yes, override canSustainPlant(wtv) in your "dirt" block.

Make the checks you want, then return true when fulfilled.

Don't touch canBlockStay, unless you want plants to grow in the dark (light<8 ), or inside caves, or in the air.

Posted

i tried this some time ago, i came to the point where you need to create your own plant type and for that you need a list and the list has to be connected to a block file or something i cant exactly remember but i do remember it was to convoluted or i was just too dumb to make it work, so if you have any luck i would be interested to know how you do it :)

 

Look at sugar cane, and how all the methods linked to whether the black can stay on the current block and look through the  connected classes and areas and what information needs to be given in these methods. thats how i looked at it anyway.

 

GoodLuck!

Use examples, i have aspergers.

Examples make sense to me.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.