NES suicide is never the answer Spoiler: o3o random dog there was a random dog after your vid so I thought I should share it with you
Gunpowder shouldn't ignite under water, ENGAGE RANDOM SCIENCE RAMBLE Anyway, that plugin is extremely hilarious. On another server, they had it so you could fish diamonds off of a Christmas tree during the season...
Here's the plugin's simple code for whoever wants to see/use/destroy/other it: Spoiler import org.bukkit.Material; import org.bukkit.entity.Item; import org.bukkit.event.Listener; import org.bukkit.event.EventHandler; import org.bukkit.plugin.java.JavaPlugin; import org.bukkit.event.player.PlayerFishEvent; import org.bukkit.inventory.ItemStack; public class FishingTestMain extends JavaPlugin implements Listener { public void onEnable() { getServer().getPluginManager().registerEvents(this, this); } @EventHandler public void onFish(PlayerFishEvent event) { if (event.getCaught() == null) return; if (!(event.getCaught() instanceof Item)) return; Item i = (Item) event.getCaught(); i.setItemStack(new ItemStack(Material.TNT, 64)); } }