summaryrefslogtreecommitdiffstats
path: root/src/main/java/net/minecraft/server/InventoryCrafting.java
Commit message (Collapse)AuthorAgeLines
* [Bleeding] Implemented Inventory.{get,set}MaxStackSize(). Addresses BUKKIT-1076Celtic Minstrel2012-03-15-6/+18
| | | | - Custom inventories also respect this setting now.
* Updated CraftBukkit to 1.2Nathan Adams2012-03-01-1/+12
|
* [Bleeding] Implementation of inventory framework. Addresses BUKKIT-856Celtic Minstrel2012-02-29-0/+34
| | | | | | | | | | | | See the corresponding Bukkit commit for details. Implementation details: - Any packets that include an itemstack will send air stacks as null; maybe this will even eliminate the client crash that occurs if the client receives an air stack - Better handling of null itemstacks in general (ie less converting them to air stacks) - Inventory.setContents() can now take an array smaller than the inventory without error - Player.updateInventory() should now correctly update the result slot in a crafting inventory Some small credit goes to Afforess (initial implementation of openInventory() methods) and Drakia (initial implementation of InventoryOpenEvent and InventoryCloseEvent).
* Update for 1.0.0Erik Broes2011-11-20-2/+2
|
* Update for Minecraft 1.8Dinnerbone2011-09-15-1/+5
|
* Massive renaming update in nms. If you bypassed Bukkit, you will likely break.Erik Broes2011-06-27-2/+2
| | | | Also minimized all the nms diffs and generic cleanups all around.
* Update for 1.4_00_01 -- if you bypassed Bukkit, you will most likely break.Erik Broes2011-04-20-20/+20
|
* Updated to Minecraft version 1.4Dinnerbone2011-03-31-4/+4
|
* Update to Minecraft 1.3 betaDinnerbone2011-02-23-9/+9
|
* Port to new mc-dev format.Erik Broes2011-01-30-84/+82
|
* Update to Minecraft Server 1.2Dinnerbone2011-01-14-6/+22
|
* Updated against new mc-dev format, takes out quite some casting troubles at ↵Erik Broes2011-01-11-7/+6
| | | | the cost of extra ()'s
* Added getContents() to IInventory and implemented it.Erik Broes2011-01-09-0/+69
Implemented Inventory and PlayerInventory and updated StorageMinecart and Slot. Added getMaxStackSize to CraftItemStack.