Desert sprouts and Dune Grass now require shears to be harvested, removed unecessary error in the auto-sound install thing, you caan now plant things on Origin Grass and can till it (This does support hoes from other mods so long as they have " hoe" in the name (With the space))

This commit is contained in:
Adubbz 2013-04-04 22:12:27 +11:00
parent dd11d8f961
commit e8402d0244
4 changed files with 87 additions and 31 deletions

View File

@ -32,6 +32,14 @@ public class BlockDesertSprouts extends Block
this(par1, Material.plants);
}
/**
* Returns the ID of the items to drop on destruction.
*/
public int idDropped(int par1, Random par2Random, int par3)
{
return -1;
}
/**
* Checks to see if its valid to put this block at the specified coordinates. Args: world, x, y, z
*/

View File

@ -27,6 +27,14 @@ public class BlockDuneGrass extends Block
this(par1, Material.plants);
}
/**
* Returns the ID of the items to drop on destruction.
*/
public int idDropped(int par1, Random par2Random, int par3)
{
return -1;
}
@Override
public void registerIcons(IconRegister par1IconRegister)
{

View File

@ -1,16 +1,25 @@
package tdwp_ftw.biomesop.blocks;
import static net.minecraftforge.common.ForgeDirection.UP;
import java.util.Random;
import tdwp_ftw.biomesop.mod_BiomesOPlenty;
import net.minecraft.block.Block;
import net.minecraft.block.BlockFlower;
import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemHoe;
import net.minecraft.item.ItemStack;
import net.minecraft.util.Icon;
import net.minecraft.world.IBlockAccess;
import net.minecraft.world.World;
import net.minecraftforge.common.EnumPlantType;
import net.minecraftforge.common.ForgeDirection;
import net.minecraftforge.common.IPlantable;
public class BlockOriginGrass extends Block
{
@ -62,6 +71,42 @@ public class BlockOriginGrass extends Block
}
}*/
@Override
public boolean canSustainPlant(World world, int x, int y, int z, ForgeDirection direction, IPlantable plant)
{
return true;
}
/**
* Called upon block activation (right click on the block.)
*/
public boolean onBlockActivated(World world, int par2, int par3, int par4, EntityPlayer par5EntityPlayer, int par6, float par7, float par8, float par9)
{
if (par5EntityPlayer.getCurrentEquippedItem() != null)
{
if (par5EntityPlayer.getCurrentEquippedItem().getDisplayName().toLowerCase().contains(" hoe"))
{
Block block = Block.tilledField;
world.playSoundEffect((double)((float)par2 + 0.5F), (double)((float)par3 + 0.5F), (double)((float)par4 + 0.5F), block.stepSound.getStepSound(), (block.stepSound.getVolume() + 1.0F) / 2.0F, block.stepSound.getPitch() * 0.8F);
if (!world.isRemote)
{
world.setBlock(par2, par3, par4, block.blockID);
}
return true;
}
else
{
return false;
}
}
else
{
return false;
}
}
/**
* Ticks the block if it's been scheduled
*/

View File

@ -72,8 +72,7 @@ public class mod_BiomesOPlenty
String[] soundFiles = { "bopdisc.ogg", "bopdiscmud.ogg"};
for (String soundFile : soundFiles)
try
for (String soundFile : soundFiles) try
{
File file = new File("resources/mod/streaming/" + soundFile);
if (!file.exists()) {
@ -93,10 +92,6 @@ public class mod_BiomesOPlenty
istream.close();
if (size == 0) file.delete();
}
else {
throw new RuntimeException("Unknown Error, file does not exist");
}
}
catch (Exception e)
{