This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Use this in your Java plugin to play russian roulette with your hardware server <3 | |
| //If it doesn't die, props to you, else well....... | |
| @EventHandler | |
| public void russianRoulette(InventoryCloseEvent event) { | |
| event.getPlayer().openInventory(Bukkit.createInventory(null, 9, "Roulette")); | |
| } | |
| } |