Update Bukkit for Minecraft 1.4(.2) changes.

By: Travis Watkins <amaranth@ubuntu.com>
This commit is contained in:
Bukkit/Spigot
2012-10-22 03:30:04 -05:00
parent 93362adea2
commit c73a3c02f0
23 changed files with 486 additions and 34 deletions

View File

@@ -0,0 +1,4 @@
package org.bukkit.inventory;
public interface AnvilInventory extends Inventory {
}

View File

@@ -0,0 +1,14 @@
package org.bukkit.inventory;
public interface BeaconInventory extends Inventory {
/**
* Set the item powering the beacon.
* @param item The new item
*/
void setItem(ItemStack item);
/**
* Get the item powering the beacon.
* @return The current item.
*/
ItemStack getItem();
}