Sample to let you place cactus anywhere

This commit is contained in:
durron597 2011-01-01 01:40:02 -05:00
parent 0c20593916
commit f7fcfd22a5

View File

@ -3,6 +3,7 @@ package com.dinnerbone.bukkit.sample;
import org.bukkit.Block;
import org.bukkit.BlockFace;
import org.bukkit.event.block.BlockCanBuildEvent;
import org.bukkit.event.block.BlockListener;
import org.bukkit.event.block.BlockPhysicsEvent;
@ -28,4 +29,13 @@ public class SampleBlockListener extends BlockListener {
}
}
}
@Override
public void onBlockCanBuild(BlockCanBuildEvent event) {
Block block = event.getBlock();
if (block.getType() == 81) {
event.setCancelled(true);
}
}
}