how to make plugin wait spigot code example
Example: how to make plugin wait spigot
Bukkit.getScheduler().runTaskLater(plugin, () -> {
// code
}, 20L); // amount to wait in ticks , 20 ticks = 1 second
Bukkit.getScheduler().runTaskLater(plugin, () -> {
// code
}, 20L); // amount to wait in ticks , 20 ticks = 1 second