summaryrefslogtreecommitdiffstats
path: root/src/main/java/net/minecraft/server/ItemBucket.java
Commit message (Collapse)AuthorAgeLines
* Update CraftBukkit to Minecraft 1.4(.2).Travis Watkins2012-10-27-4/+4
|
* Fix PlayerBucketEmptyEvent handling. Fixes BUKKIT-2002 and fixes BUKKIT-1997Steve Anton2012-08-03-11/+9
| | | | | | | | | | | | | | | | | The method this.a(world, d0, d1, d2, i, j, k) is responsible for actually placing the lava or water source block in the world. The event is currently called after this method, thus canceling the event will cause the player to keep their water/lava bucket but the water/lava will still appear where they attempted to place it. In addition, the check for whether a player has creative inventory is short circuiting before the event fires, so the event will not be called for these players. This moves the event call and cancelled check above these two calls to ensure it always fires and the results of it are honored. Closes GH-835.
* Update CraftBukkit to Minecraft 1.3.1feildmaster2012-08-02-22/+47
|
* 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
* Fixed translation issue and enderman not spawning when The End is generated. ↵EvilSeph2012-03-11-1/+1
| | | | Fixes BUKKIT-1115
* Updated CraftBukkit to 1.2Nathan Adams2012-03-01-2/+0
|
* Updated to Minecraft 1.1Erik Broes2012-01-12-1/+1
|
* Fix for water and lava removal in creative mode BUKKIT-362Tahg2011-12-20-2/+2
|
* Stop converting ItemStack to nms ItemStack by handAndrew Ardill2011-12-13-18/+5
| | | | | | | 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.
* Update for 1.0.0Erik Broes2011-11-20-14/+12
|
* Rename revision 2Dinnerbone2011-09-15-1/+1
|
* Update for Minecraft 1.8Dinnerbone2011-09-15-0/+12
|
* Whitespace + general cleanupErik Broes2011-05-15-7/+9
|
* Update for 1.4_00_01 -- if you bypassed Bukkit, you will most likely break.Erik Broes2011-04-20-23/+23
|
* Updated to Minecraft version 1.4Dinnerbone2011-03-31-1/+0
|
* Line endings, damnit!Dinnerbone2011-03-27-4/+4
|
* Minor cleanupsErik Broes2011-03-23-7/+0
|
* Implement Bucket eventsErik Broes2011-03-21-30/+52
|
* Update to Minecraft 1.3 betaDinnerbone2011-02-23-2/+2
|
* N.M.S cleanup in preparation for updateDinnerbone2011-02-21-1/+0
|
* Port to new mc-dev format.Erik Broes2011-01-30-101/+113
|
* removed all instances of new CraftEntity* where appropriate.Andrew Ardill2011-01-23-11/+16
| | | | Entity.getBukkitEntity() is now used instead.
* Moved org.bukkit.craftbukkit.Block to org.bukkit.craftbukkit.block.BlockDinnerbone2011-01-15-1/+1
|
* Moved block stuff from org.bukkit to org.bukkit.blockDinnerbone2011-01-15-1/+1
|
* All inventory stuff in org.bukkit.craftbukkit moved to ↵Dinnerbone2011-01-15-1/+1
| | | | org.bukkit.craftbukkit.inventory
* All entity stuff in org.bukkit.craftbukkit moved to ↵Dinnerbone2011-01-15-1/+1
| | | | org.bukkit.craftbukkit.entity
* Update to Minecraft Server 1.2Dinnerbone2011-01-14-6/+6
|
* Updated against new mc-dev format, takes out quite some casting troubles at ↵Erik Broes2011-01-11-21/+25
| | | | the cost of extra ()'s
* Another dumb bucket bug.durron5972011-01-09-0/+1
|
* Fixed lack of calling callEvent(event), finished Item Usedurron5972011-01-08-3/+2
|
* Partial Player Item, Block RightClick, Block Placedurron5972011-01-08-0/+133