summaryrefslogtreecommitdiffstats
path: root/src/main/java/net/minecraft/server/EntityPig.java
Commit message (Collapse)AuthorAgeLines
* Update to Minecraft 1.8Thinkofdeath2014-11-28-159/+0
| | | | For more information please see http://www.spigotmc.org/
* Update CraftBukkit to Minecraft 1.7.10Travis Watkins2014-07-08-9/+9
|
* Rework mob item dropping on death. Fixes BUKKIT-5625Travis Watkins2014-05-26-13/+5
| | | | | | | | | | | | | | | | | | | After the changes in d611cff2 we started including a mob's equipment when calling EntityDeathEvent so plugins can access this data. However, the changes to enable this triggered a bug that makes skeletons and pig zombies no longer drop equipment because they handle this differently than the rest. On top of this we don't handle dropping equipment for mobs that cannot pick up items in vanilla even though vanilla does drop equipment for them if you summon them with it. We also do not include a horse's inventory in the event so they drop their saddle, armor, chest, and chest contents with no way for a plugin to control this. To solve this issues we revert mob item dropping back to vanilla logic and instead just capture all their drops in the method they all call to spawn them into the world. We also move horse inventory dropping so it happens at a time when we're capturing these drops. With these changes all items mobs drop on death should now be included in the event and we have less diff to worry about for future updates.
* Update CraftBukkit to Minecraft 1.7.5Nate Mortensen2014-03-21-10/+10
|
* Update CraftBukkit to Minecraft 1.7.2mbax2013-11-30-24/+28
|
* Update CraftBukkit to 1.6.4feildmaster2013-09-19-8/+8
|
* Update CraftBukkit to 1.6.2mbax2013-07-08-12/+12
|
* Update CraftBukkit to 1.6.1Nate Mortensen2013-07-01-27/+26
|
* Update CraftBukkit to Minecraft 1.5Travis Watkins2013-03-15-10/+10
|
* Update CraftBukkit to Minecraft 1.4.4.Travis Watkins2012-11-13-12/+16
|
* Update CraftBukkit to Minecraft 1.4(.2).Travis Watkins2012-10-27-13/+43
|
* CraftBukkit comment fixesWesley Wolfe2012-09-14-2/+4
|
* Fire EntityDeathEvent for pigs. Fixes BUKKIT-2100Travis Watkins2012-08-05-3/+8
|
* Update CraftBukkit to Minecraft 1.3.1feildmaster2012-08-02-12/+24
|
* Updated to Minecraft version 1.2.4. Updated version string to 1.2.4-R0.1.Nathan Adams2012-03-22-1/+1
|
* Updated CraftBukkit to 1.2Nathan Adams2012-03-01-6/+21
|
* Adjusted CraftBukkit to work with the entity event convenience patch in ↵TomyLobo2012-02-29-10/+2
| | | | Bukkit. Addresses BUKKIT-809
* Fix formatting.Erik Broes2012-01-15-1/+1
|
* Update for 1.1_01 renames.Erik Broes2012-01-15-2/+2
| | | | | We know these updates (can) break plugins bypassing Bukkit. They are needed for smooth updates however. There will be another one right before before 1.1-R1.
* Updated to Minecraft 1.1Erik Broes2012-01-12-1/+1
|
* Updated to use mc-dev rename revision 1Nathan Adams2011-11-30-4/+4
|
* Update for 1.0.0Erik Broes2011-11-20-9/+20
|
* Update to mcdev rename revision 01 for 1.8.1Dinnerbone2011-09-24-1/+1
|
* Update for Minecraft 1.8Dinnerbone2011-09-15-5/+5
|
* Massive renaming update in nms. If you bypassed Bukkit, you will likely break.Erik Broes2011-06-27-13/+9
| | | | Also minimized all the nms diffs and generic cleanups all around.
* Added SpawnReasons to CreatureSpawn events. Thanks winsock!EvilSeph2011-06-21-3/+3
|
* Implemented 1.6!Dinnerbone2011-05-26-13/+15
|
* Whitespace + general cleanupErik Broes2011-05-15-8/+8
|
* Added events related to weather in 1.5. Thanks wizjany!EvilSeph2011-04-25-0/+95
|
* Reworked getEntity; Hi instanceof, bay 16 classesErik Broes2011-01-30-71/+0
|
* Port to new mc-dev format.Erik Broes2011-01-30-14/+15
|
* Entity audit. Adds checks for null entities, and adds conformity.Andrew Ardill2011-01-21-4/+4
|
* fixed imports on all EntitiesAndrew Ardill2011-01-18-0/+2
|
* Addition of all Entity classes.Andrew Ardill2011-01-18-0/+7
| | | | | | Each Entity creates a corresponding instance of a Craft Entity, to be used whenever sending instances to an event handler with getBukkitEntity().
* Adding all Entities into CraftBukkit.Andrew Ardill2011-01-18-0/+61
These are needed to properly allow for determining class type, in accordance with current practice.