summaryrefslogtreecommitdiffstats
path: root/src/main/java/net/minecraft/server/TileEntityFurnace.java
Commit message (Collapse)AuthorAgeLines
* Update CraftBukkit to Minecraft 1.7.5Nate Mortensen2014-03-21-32/+34
|
* Rework furnace result log. Fixes BUKKIT-5115Wesley Wolfe2013-12-10-8/+10
| | | | | | | This changes the logic for furnace smelt event to consider a result of null (read: air / invalid), which will still consume an item. It also properly considers item meta in the result, instead of only checking the item data value.
* Update CraftBukkit to Minecraft 1.7.2mbax2013-11-30-28/+27
|
* Update CraftBukkit to 1.6.1Nate Mortensen2013-07-01-5/+10
|
* Fix things using wall time running too fast. Fixes BUKKIT-4155Travis Watkins2013-04-27-1/+1
| | | | | | | | | | | | | | When converting things in Minecraft to use wall time instead of ticks I realized we'd run into integer division rounding issues and could have updates that end up counting as zero ticks. To compensate for this the code ensures we always process at least one tick. However, every time we end up with zero ticks the next time we have an extra tick due to rounding the other way with the leftovers. This means we are going far too fast and should not have this at least one tick logic at all. On top of this some potions rely on the number of ticks they run and not just the amount of time they last and so potions were put back to running with ticks entirely.
* Use wall time instead of ticks for several things. Fixes BUKKIT-4059Travis Watkins2013-04-13-5/+4
| | | | | | | | | | | | | | | | | | | | | | | | Currently furnace smelting and the item pickup delay timer use wall time (aka actual time passed) to emulate a constant tick rate so run at the same speed regardless of the server's actual tick rate. There are several other places this makes sense so this commit converts them. The item despawn timer is converted so now always takes 5 minutes. Users know this 5 minute number well so keeping this constant helps to avoid confusion. This also helps alleviate lag because if a large number of item drops is the reason your server is running slowly having them stay around longer just means your server is slow longer. Potion brewing and the zombie villager conversion timer are now constant. These match the furnace criteria of being useful for hiding lag and not having a detrimental effect on gameplay. Potion effects are now also using wall time. The client is told about effect times in ticks and displays this information to the user as minutes and seconds assuming a solid 20 ticks per second. The server does have code for updating the client with the current time remaining to help avoid skew due to differing tick rates but making this a constant makes sense due to this display.
* Cleanup comments, formatting, etcTravis Watkins2013-03-25-2/+2
|
* Update CraftBukkit to Minecraft 1.5.1Travis Watkins2013-03-20-10/+17
|
* Update CraftBukkit to Minecraft 1.5Travis Watkins2013-03-15-6/+33
|
* Update CraftBukkit to Minecraft 1.4.7feildmaster2013-01-17-1/+1
|
* Implement ItemFactory and ItemMeta values. Adds BUKKIT-15Wesley Wolfe2012-12-17-4/+4
|
* Update CraftBukkit to Minecraft 1.4.4.Travis Watkins2012-11-13-1/+1
|
* Update CraftBukkit to Minecraft 1.4(.2).Travis Watkins2012-10-27-3/+2
|
* Update CraftBukkit to Minecraft 1.3.1feildmaster2012-08-02-7/+22
|
* Cleaned up CraftBukkit comments in NMS.Wesley Wolfe2012-07-23-2/+1
| | | | | | | | | | | | | 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
* 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.