mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-27 23:10:16 +01:00
Sample to let you place cactus anywhere
By: durron597 <martin.jared@gmail.com>
This commit is contained in:
parent
29bd4853cb
commit
b5cbcfbcdb
1 changed files with 10 additions and 0 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue