我该怎么做呢?插口插件

How do I do this? Spigot plugin

所以,我写了一个救援条插件,如果你右键点击一个火焰条,你会在下面得到一个方块。现在我希望那个块在 5 秒后消失,我想这可以用一个简单的 runnabel 来完成,我只是不知道怎么做。我刚开始写这个插件。 IntelliJ 理念,java。抱歉,我用 google.

翻译

当你放置方块时,你可以 运行 延迟任务,运行s 100 刻后(1 秒是 20 刻)并移除那里的方块(将其设置为空气)

Bukkit.getScheduler().sheduleSyncDelayedTask(this, new Runnable() {
    public void run() {
        // Remove the block here
        // block.setType(Material.Air)
    }
}, 100L);

有关使用 Bukkit Scheudler 的更多信息,请查看 this entry in the bukkit wiki