📜  bukkit 块放置事件 - 任何代码示例

📅  最后修改于: 2022-03-11 14:55:41.293000             🧑  作者: Mango

代码示例1
@EventHandler
  public void onPlace(BlockPlaceEvent e)
  {
    if (e.getBlock().getType() == Material.STONE) {
      // what to do if the block is Stone
    }else{
   // if not
}