summaryrefslogtreecommitdiffstats
path: root/src/main/java/net/minecraft/server/TileEntityHopper.java
Commit message (Collapse)AuthorAgeLines
* Correct missed diffTravis Watkins2014-03-24-1/+1
|
* Update CraftBukkit to Minecraft 1.7.5Nate Mortensen2014-03-21-39/+136
|
* Update CraftBukkit to Minecraft 1.7.2mbax2013-11-30-39/+38
|
* Update CraftBukkit to 1.6.2mbax2013-07-08-5/+5
|
* Update CraftBukkit to 1.6.1Nate Mortensen2013-07-01-7/+9
|
* Revert "Add delay to hopper even if it doesn't do anything."Travis Watkins2013-04-27-4/+1
| | | | This reverts commit f5388e8f94e2cbab76c2255fd872c289e83100a0.
* Add delay to hopper even if it doesn't do anything. Fixes BUKKIT-4061Travis Watkins2013-04-13-1/+4
| | | | | | | | If a hopper is unable to perform any action during a tick it attempts to do so every tick from then on. Once it is able to do so it then sets a delay before attempting to do something again. To avoid excessive CPU usage for hoppers sitting idle we now apply this delay regardless of the success of the action.
* Handle large chests correctly for hopper events. Fixes BUKKIT-3979Travis Watkins2013-04-04-1/+8
| | | | | | | In commit 7710efc5f9 we corrected the handling of large chests as the destination for hoppers moving items but did not apply the same fix for large chests being the source or for droppers. This commit updates these to have the same fix.
* Special case large chests for hopper events. Fixes BUKKIT-3916Travis Watkins2013-03-29-1/+8
| | | | | | | | Large chests work in a different fashion as they are a combination of two other inventories. This causes their getOwner method to always return null as their is no correct return. To compensate for this for the hopper events we special case them to use their CraftBukkit counterpart that has the information we need for the event.
* Cleanup comments, formatting, etcTravis Watkins2013-03-25-5/+5
|
* Don't assume all hoppers are blocks. Fixes BUKKIT-3883Travis Watkins2013-03-24-1/+8
|
* Implement InventoryMoveItemEvent. Adds BUKKIT-3765Dennis Bliefernicht2013-03-23-4/+40
| | | | | | This makes droppers, hoppers and hopper minecarts fire an InventoryMoveItemEvent whenever an item is being moved from or to another inventory.
* Update CraftBukkit to Minecraft 1.5.1Travis Watkins2013-03-20-101/+104
|
* Implement InventoryPickupItemEvent. Adds BUKKIT-3798Travis Watkins2013-03-18-0/+9
|
* Update CraftBukkit to Minecraft 1.5Travis Watkins2013-03-15-0/+417