Fix infinite sign bug.

This commit is contained in:
Wizjany 2011-08-26 22:35:28 -04:00
parent a521ab76a5
commit 297e06ba71

View File

@ -109,7 +109,7 @@ public static Player matchSinglePlayer(Server server, String name) {
public static void dropSign(Block block) {
block.setTypeId(0);
block.getWorld().dropItemNaturally(block.getLocation(),
new ItemStack(Material.SIGN));
new ItemStack(Material.SIGN, 1));
}
/**