Fork of Poseidon providing Bukkit #1060 to older Beta versions (b1.0-b1.7.3)
1package org.bukkit.block;
2
3/**
4 * Represents a dispenser.
5 *
6 * @author sk89q
7 */
8public interface Dispenser extends BlockState, ContainerBlock {
9
10 /**
11 * Attempts to dispense the contents of this block<br />
12 * <br />
13 * If the block is no longer a dispenser, this will return false
14 *
15 * @return true if successful, otherwise false
16 */
17 public boolean dispense();
18}