Latest stuff

This commit is contained in:
nossr50 2011-04-14 06:41:39 -07:00
parent eccef7d206
commit 6236e0960e
2 changed files with 17 additions and 17 deletions

View File

@ -256,23 +256,23 @@ public class mcBlockListener extends BlockListener {
int oy = blockTo.getY();
int oz = blockTo.getZ();
if(blockTo.getTypeId() == 9 || blockTo.getTypeId() == 8){
if(blockTo.getTypeId() == 9 || blockTo.getTypeId() == 8)
return;
}
for (int cx = -radius; cx <= radius; cx++) {
for (int cy = -radius; cy <= radius; cy++) {
for (int cz = -radius; cz <= radius; cz++) {
Block block = world.getBlockAt(ox + cx, oy + cy, oz + cz);
//If block is block
if (isWater == true &&
block.getTypeId() == 13 && mcLoadProperties.clay) {
//Change
block.setTypeId(82);
return;
}
}
}
if(mcLoadProperties.clay){
for (int cx = -radius; cx <= radius; cx++) {
for (int cy = -radius; cy <= radius; cy++) {
for (int cz = -radius; cz <= radius; cz++) {
Block block = world.getBlockAt(ox + cx, oy + cy, oz + cz);
//If block is block
if (isWater == true){
//Change
block.setType(Material.CLAY);
return;
}
}
}
}
}
}
}

View File

@ -138,7 +138,7 @@ public class mcHerbalism {
if(Math.random() * 1500 <= PP.getHerbalismInt()){
event.setCancelled(true);
loc.getWorld().dropItemNaturally(loc, is);
//block.setType(Material.WHEAT); //Change broken block to wheat
block.setData((byte) 0x1); //Change it to first stage
//Setup the bonuses