summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/bukkit/inventory
Commit message (Collapse)AuthorAgeLines
* Fixed Javadoc errorsSycholic2016-03-23-1/+1
|
* SPIGOT-1638 / SPIGOT-1673: Rework Potions APIt00thpick12016-03-12-8/+25
|
* SPIGOT-1806: Add HumanEntity#getMainHandMatthew2016-03-12-0/+9
|
* SPIGOT-1526 / SPIGOT-1809: Expand Inventory APImd_52016-03-09-1/+43
|
* BUILDTOOLS-203: Fix invalid javadocmd_52016-03-04-4/+4
|
* SPIGOT-1622: Add drop chance methods for off hand.md_52016-03-02-10/+57
|
* Add Merchant APIXor Boole2016-03-01-0/+144
|
* Add fuel related methods to BrewingStand APIlapry2016-03-01-0/+16
|
* Add custom experience levels for FurnaceRecipes.hibo982016-03-01-2/+48
|
* Add getLocation() to Inventory.md_52016-03-01-0/+9
|
* Implement API for "main hand" and "off hand" slots.Thinkofdeath2016-03-01-4/+85
| | | | Also deprecate existing "hand" API as it is not specific about which hand is being referred to. Implementations should default this method to the "main hand".
* SPIGOT-1325: Make ItemStack deserialization more robust.md_52015-12-06-1/+1
|
* Fix javadoc HTML error with properly escaped symbols - SPIGOT-935DemonWav2015-05-28-1/+1
|
* Add more detailed documentation for setItem() in PlayerInventoryDemonWav2015-05-26-0/+24
|
* Add BlockStateMeta which allows creating and editting 1.8's blockEntityTagThinkofdeath2015-03-24-0/+35
|
* API for setting/removing hideflags on ItemStacksFabian Faßbender2015-02-15-0/+63
|
* Implement armor stand event.FearThe13372015-02-15-0/+10
|
* Clean up the javadoc to pass java 8's doclintThinkofdeath2014-11-30-23/+32
|
* Update to Minecraft 1.8md_52014-11-26-0/+90
| | | | For more information please see http://www.spigotmc.org/
* [Bleeding] Fix logic for calculating slot in Creative mode. Fixes BUKKIT-4715GJ2014-01-25-0/+4
| | | | | | Previously, hotbar slots for player inventory would return 9 - 18 while in Creative mode, rather than 0 - 9. This commit fixes the logic used for calculating the returned slot based on the raw slot.
* Pulling all pending Bukkit-JavaDoc changesWesley Wolfe2013-12-15-222/+405
| | | | A special thanks goes to @aerouk for almost all of the changes found here.
* Pulling all pending Bukkit-JavaDoc changesWesley Wolfe2013-09-10-9/+24
|
* Deprecate magic valuesWesley Wolfe2013-08-28-1/+43
|
* Fix missing closing bracket in addEnchantment. Fixes BUKKIT-4126ST-DDT2013-08-20-1/+1
| | | | | | Prior to this commit the message would display as "...(given #, bounds are # to #". This commit changes that by adding the missing bracket to the end of the statement. This is strictly a visual error.
* Pulling all pending Bukkit-JavaDoc changesEdmond Poon2013-08-03-2/+46
|
* Add Horse API. Adds BUKKIT-4424h31ix2013-07-10-0/+32
| | | | | | API has been added to interface with Horses and to modify their inventories. A new event, HorseJumpEvent, has been added to be fired whenever a horse jumps. This commit fixes BUKKIT-4393.
* Pulling all pending Bukkit-JavaDoc changesEdmond Poon2013-04-02-26/+26
|
* Add methods to check for conflicting enchantments. Adds BUKKIT-3830GJ2013-03-25-0/+16
|
* Add ability to change player item in hand. Adds BUKKIT-3318Patrick Seidel2013-03-24-0/+10
|
* Map old wildcard recipe data to new 1.5 value. Fixes BUKKIT-3849Travis Watkins2013-03-21-0/+11
|
* Pulling all pending Bukkit-JavaDoc changesEdmond Poon2013-03-20-9/+16
|
* Improve javadoc in 26 files.feildmaster2013-01-22-82/+126
| | | | | | Addresses: BUKKIT-1643, BUKKIT-1868, BUKKIT-1846, BUKKIT-2632, BUKKIT-3196, BUKKIT-3187, BUKKIT-3198, BUKKIT-3200, BUKKIT-3201 and BUKKIT-3417.
* Add method to get defult leather color. Adds BUKKIT-3203Wesley Wolfe2012-12-27-3/+12
| | | | | The default leather color is already used internally in place of null. The javadocs were updated appropriately to indicate as such.
* Add enchantment storage meta. Adds BUKKIT-3237Wesley Wolfe2012-12-21-0/+65
| | | | | | | | | | | Books can 'store' enchantments that can be applied to other items later. These enchantments exist seperately of enchantments that actually effect the item, and are as stated 'stored' in the book instead of the book being enchanted. The meta is generically named as the concept could be applied to other item types later, such as a enchantment scroll. All of the methods mimic those in the base meta, but instead specify 'stored' in each method name.
* Add FireworkEffect and respective item metas. Adds BUKKIT-3236Wesley Wolfe2012-12-21-1/+113
| | | | | | | | | FireworkEffect is an immutable class that requires the builder pattern to construct, to reduce ambiguity and help make code uses more readable. FireworkMeta contains a list of effects, as well as a flight height. FireworkEffectMeta contains a single effect for charges.
* Update Bukkit to Minecraft 1.4.6feildmaster2012-12-20-0/+10
|
* Refactor get/setChestPlate to Chestplate. Addresses BUKKIT-3189feildmaster2012-12-18-2/+2
| | | | This method was inconsistent with previous methods.
* Clarify functionality in Inventory. Fixes BUKKIT-3097Wesley Wolfe2012-12-17-31/+46
| | | | | | | | | | Mainly javadoc changes to be specific in functionality and outcomes. This is mixed with specifying that null Material should throw IllegalArgumentException instead of the previous undefined NullPointerException. Included is a clarification on how contains(ItemStack, int) works, and a new method containsAtLeast(ItemStack, int) for counting the number of a specific item.
* Add ItemMeta factory and interfaces. This adds BUKKIT-15Wesley Wolfe2012-12-17-46/+706
| | | | | | Included with ItemMeta is a new serializable class Color. PotionEffects are now serializable.
* Add EntityEquipment API. Adds BUKKIT-3103feildmaster2012-12-10-0/+209
|
* Add clear inventory API to PlayerInventory with a successful count return. ↵EvilSeph2012-10-30-0/+11
| | | | Adds BUKKIT-2745
* Update Bukkit for Minecraft 1.4(.2) changes.Travis Watkins2012-10-27-0/+18
|
* Update Bukkit for 1.3.1 changesfeildmaster2012-08-02-0/+4
|
* Javadoc updatesfeildmaster2012-06-03-12/+12
| | | | Fixes BUKKIT-1653, Fixes BUKKIT-1383 and Fixes BUKKIT-1644
* [Bleeding] Add iterator() with starting index. Addresses BUKKIT-1246Celtic Minstrel2012-03-20-0/+9
|
* [Bleeding] Add Inventory.{get,set}MaxStackSize(). Addresses BUKKIT-1076Celtic Minstrel2012-03-15-0/+20
|
* [Bleeding] Make InventoryView.setItem(-999, item) drop the item on the ↵Celtic Minstrel2012-03-15-0/+5
| | | | ground by default.
* [Bleeding] Made ItemStack constructors not default to an amount of 0. Fixes ↵Celtic Minstrel2012-03-15-2/+2
| | | | BUKKIT-610
* [Bleeding] Added DoubleChest wrapper so that DoubleChestInventory can return ↵Celtic Minstrel2012-03-15-0/+4
| | | | something other than null. Addresses BUKKIT-995
* [Bleeding] Fixed crafting enchanted items, fixes BUKKIT-602Wesley Wolfe2012-03-02-1/+1
|