summaryrefslogtreecommitdiffstats
path: root/src/main/java/net/minecraft/server/InventoryCraftResult.java
Commit message (Collapse)AuthorAgeLines
* Update to Minecraft 1.8Thinkofdeath2014-11-28-96/+0
| | | | For more information please see http://www.spigotmc.org/
* Update CraftBukkit to Minecraft 1.7.10Travis Watkins2014-07-08-1/+1
|
* Update CraftBukkit to Minecraft 1.7.2mbax2013-11-30-3/+3
|
* Update CraftBukkit to Minecraft 1.5Travis Watkins2013-03-15-2/+10
|
* Update CraftBukkit to Minecraft 1.4.4.Travis Watkins2012-11-13-1/+1
|
* Update CraftBukkit to Minecraft 1.4(.2).Travis Watkins2012-10-27-8/+8
|
* Update CraftBukkit to Minecraft 1.3.1feildmaster2012-08-02-2/+3
|
* Cleaned up CraftBukkit comments in NMS.Wesley Wolfe2012-07-23-7/+3
| | | | | | | | | | | | | Added newlines at the end of files Fixed improper line endings on some files Matched start - end comments Added some missing comments for diffs Fixed syntax on some spots Minimized some diff Removed some no longer used files Added comment on some required files with no changes Fixed imports of items used once Added imports for items used more than once
* [Bleeding] Implemented Inventory.{get,set}MaxStackSize(). Addresses BUKKIT-1076Celtic Minstrel2012-03-15-1/+7
| | | | - Custom inventories also respect this setting now.
* Updated CraftBukkit to 1.2Nathan Adams2012-03-01-0/+11
|
* [Bleeding] Implementation of inventory framework. Addresses BUKKIT-856Celtic Minstrel2012-02-29-0/+19
| | | | | | | | | | | | 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-13/+13
|
* Updated to Minecraft version 1.4Dinnerbone2011-03-31-3/+3
|
* Update to Minecraft 1.3 betaDinnerbone2011-02-23-7/+7
|
* inventory fixesTahg2011-02-08-1/+1
|
* Port to new mc-dev format.Erik Broes2011-01-30-53/+51
|
* Update to Minecraft Server 1.2Dinnerbone2011-01-14-2/+2
|
* Updated against new mc-dev format, takes out quite some casting troubles at ↵Erik Broes2011-01-11-4/+3
| | | | the cost of extra ()'s
* Added getContents() to IInventory and implemented it.Erik Broes2011-01-09-0/+54
Implemented Inventory and PlayerInventory and updated StorageMinecart and Slot. Added getMaxStackSize to CraftItemStack.