summaryrefslogtreecommitdiffstats
path: root/src/main/java/net/minecraft/server/TileEntityFurnace.java
Commit message (Collapse)AuthorAgeLines
* Updated version to 1.2.5-R0.1-SNAPSHOTDinnerbone (Laptop)2012-03-30-5/+7
|
* [Bleeding] Implemented Inventory.{get,set}MaxStackSize(). Addresses BUKKIT-1076Celtic Minstrel2012-03-15-1/+6
| | | | - Custom inventories also respect this setting now.
* Updated CraftBukkit to 1.2Nathan Adams2012-03-01-2/+13
|
* Updated to rename revision 02Erik Broes2012-03-01-3/+3
|
* [Bleeding] Implementation of inventory framework. Addresses BUKKIT-856Celtic Minstrel2012-02-29-0/+20
| | | | | | | | | | | | 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).
* Fix formatting.Erik Broes2012-01-15-0/+1
|
* Stop converting ItemStack to nms ItemStack by handAndrew Ardill2011-12-13-3/+1
| | | | | | | This should fix many issues with enchantments being lost, as the method used takes care of enchantments. Additionally, use the new nms ItemStack constructor in places where appropriate. Fixes (at least part of) BUKKIT-7. Need to identify any further places to fix.
* Updated to use mc-dev rename revision 1Nathan Adams2011-11-30-11/+11
|
* Update for 1.0.0Erik Broes2011-11-20-10/+10
|
* fixed build issues, code cleanupTahg2011-09-26-1/+1
|
* Update for Minecraft 1.8Dinnerbone2011-09-15-4/+8
|
* Update for 1.7.3Dinnerbone2011-07-08-1/+1
|
* Improved FurnaceBurn event.EvilSeph2011-07-01-3/+3
| | | | | - Added the ability to set the burn time of the fuel. - Added the ability to set if a fuel should burn or not.
* Massive renaming update in nms. If you bypassed Bukkit, you will likely break.Erik Broes2011-06-27-37/+43
| | | | Also minimized all the nms diffs and generic cleanups all around.
* Possible fix for furnaces leaving items behind.EvilSeph2011-06-20-13/+13
|
* Added Furnace smelt and burn events.EvilSeph2011-06-20-2/+38
|
* Generic cleanupErik Broes2011-06-12-1/+1
|
* Prevent effects of tickrate degradation on furnacesErik Broes2011-06-07-6/+18
|
* Whitespace + general cleanupErik Broes2011-05-15-2/+6
|
* Implemented addRecipe method in CraftServer and associated recipe classes.Celtic Minstrel2011-05-01-3/+4
|
* Update for 1.5_02.Erik Broes2011-04-21-2/+2
|
* Update for 1.4_00_01 -- if you bypassed Bukkit, you will most likely break.Erik Broes2011-04-20-64/+64
|
* Updated to Minecraft version 1.4Dinnerbone2011-03-31-11/+11
|
* Update to Minecraft 1.3 betaDinnerbone2011-02-23-41/+41
|
* Port to new mc-dev format.Erik Broes2011-01-30-109/+89
|
* Fixed blocks not keeping data on placementDinnerbone2011-01-14-208/+208
|
* Update to Minecraft Server 1.2Dinnerbone2011-01-14-49/+20
|
* Updated against new mc-dev format, takes out quite some casting troubles at ↵Erik Broes2011-01-11-8/+6
| | | | the cost of extra ()'s
* Added getContents() to IInventory and implemented it.Erik Broes2011-01-09-0/+240
Implemented Inventory and PlayerInventory and updated StorageMinecart and Slot. Added getMaxStackSize to CraftItemStack.