Grass in Nether and End

Started by Arkenia on

Topic category: Help with modding (Java Edition)

Last seen on 21:01, 2. Apr 2022
Joined Nov 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Grass in Nether and End

[1.15.2; 2020.5]

I wanted to have grass grow atop Netherrack and Endstone, to give an much-needed appearance boost to the Nether and the End, but no matter what I try, nothing works. I figured it would be a simple case of having an additional generation condition to that sees it replacing the desired block if air is above it, and I'm sure it still is, but I can't figure out exactly by what method, and in the only even close to related topic I could find, they have this bit already figured out and are trying to fix something else with it, which doesn't help me.

Last seen on 05:42, 27. Mar 2022
Joined May 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Well first of all make your…
Mon, 11/30/2020 - 05:48

Well first of all make your custom blocks and in the generation put them into nether or end, replace endstone or netherrack and in the generation condition put this:

if get block x y+1 z  =  true

       return true

return false

 

Last seen on 21:01, 2. Apr 2022
Joined Nov 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Whenever I try to put …
Wed, 12/02/2020 - 20:21

Whenever I try to put "return true" or "return false" it errors "procedure that uses return value must always end with a valid return block".