summaryrefslogtreecommitdiffstats
path: root/src/main/java/net/minecraft/server/EntityComplex.java
Commit message (Collapse)AuthorAgeLines
* Update CraftBukkit to Minecraft 1.4(.2).Travis Watkins2012-10-27-26/+0
|
* Update CraftBukkit to Minecraft 1.3.1feildmaster2012-08-02-2/+2
|
* Updated to rename revision 02Erik Broes2012-03-01-1/+1
|
* Fixed CraftLivingEntity.damage when the entity is an EntityComplex.Sam Wilson2012-01-24-0/+26
Fixes BUKKIT-589: if you call damage on an instance of EnderDragon, no damage is done. Reason for bug: damage calls Entity.damageEntity. But EntityComplex overrides damageEntity to do nothing. Fix: CraftComplexLiving should call EntityComplex.e instead of Entity.damageEntity. e is the method that actually does damage to an instance of EntityComplex.