Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

So I recently created a moss biome, kind of like a lush swamp, and the custom moss block I made is the top block. I have the block return true for canSustainPlants() and I don't know if that's the problem. (Just in case I still haven't made it clear, the lily pads in my biome are generating on top of my custom block. I don't want that.) So do I have to put something in the biome's generation to tell it not to generate lily pads on my block? Or do I have to do something more advanced in the canSustainPlants function. Thanks to all of those who help.

 

GitHub --> https://github.com/Foonicular/AMCMod

Edited by foonicular
Added Version and GitHub link

If you do not intend to place lily pads on your moss blocks, then instead of just making canSustainPlants return true always. make it return true only if the block being placed on is not a lily pad. This way lily pads shouldn't be able to generate on top of your moss block during world generation

Edited by Beethoven92

Check out the port of the BetterEnd fabric mod (WIP): https://www.curseforge.com/minecraft/mc-mods/betterend-forge-port

  • Author

Just figured it out, thanks! For anyone who looks at this I used this:

	@Override
	   public boolean canSustainPlant(BlockState state, IBlockReader world, BlockPos pos, Direction facing, net.minecraftforge.common.IPlantable plantable) {
	       net.minecraftforge.common.PlantType type = plantable.getPlantType(world, pos.offset(facing));

	       switch (type) {
	           case Desert: return false;
	           case Nether: return false;
	           case Crop:   return false;
	           case Cave:   return false;
	           case Plains: return true;
	           case Water:  return false;
	           case Beach:
	               boolean isBeach = this.getBlock() == Blocks.GRASS_BLOCK || net.minecraftforge.common.Tags.Blocks.DIRT.contains(this) || this.getBlock() == Blocks.SAND;
	               boolean hasWater = (world.getBlockState(pos.east()).getMaterial() == Material.WATER ||
	                       world.getBlockState(pos.west()).getMaterial() == Material.WATER ||
	                       world.getBlockState(pos.north()).getMaterial() == Material.WATER ||
	                       world.getBlockState(pos.south()).getMaterial() == Material.WATER);
	               return isBeach && hasWater;
	       }
	       return false;
	   }

 

Edited by foonicular

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...

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.