v1.1.0 release!
This commit is contained in:
parent
96930fc47a
commit
1778cfa737
20 changed files with 233 additions and 57 deletions
|
@ -17,7 +17,7 @@ public class BloodMagicHarvestHandler implements IHarvestHandler
|
|||
@Override
|
||||
public boolean canHandleBlock(Block block)
|
||||
{
|
||||
return block == Blocks.wheat || block == Blocks.carrots || block == Blocks.potatoes;
|
||||
return block == Blocks.wheat || block == Blocks.carrots || block == Blocks.potatoes || block == Blocks.nether_wart;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -35,6 +35,10 @@ public class BloodMagicHarvestHandler implements IHarvestHandler
|
|||
{
|
||||
return 7;
|
||||
}
|
||||
if(block == Blocks.nether_wart)
|
||||
{
|
||||
return 3;
|
||||
}
|
||||
return 7;
|
||||
}
|
||||
|
||||
|
@ -116,6 +120,10 @@ public class BloodMagicHarvestHandler implements IHarvestHandler
|
|||
{
|
||||
return (IPlantable) Items.potato;
|
||||
}
|
||||
if(block == Blocks.nether_wart)
|
||||
{
|
||||
return (IPlantable) Items.nether_wart;
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue