summaryrefslogtreecommitdiffstats
path: root/src/main/java/net/minecraft/server/Entity.java
Commit message (Collapse)AuthorAgeLines
...
* Port to new mc-dev format.Erik Broes2011-01-30-623/+657
|
* Revert "Entity's bukkitEntity field now holds a CraftEntity by default."sk89q2011-01-21-3/+1
| | | | This reverts commit 7a64e864fc481f001812d78cc4d767872c458706.
* Entity's bukkitEntity field now holds a CraftEntity by default.sk89q2011-01-21-1/+3
|
* Entity audit. Adds checks for null entities, and adds conformity.Andrew Ardill2011-01-21-9/+9
|
* fixes some explosion events to stop accessing null entities. Andrew Ardill2011-01-20-0/+3
| | | | Placed some tags against some spammy events.
* small change to block event with lava and cactus, to improveAndrew Ardill2011-01-18-1/+2
| | | | readability and consistency
* fixed imports on all EntitiesAndrew Ardill2011-01-18-2/+2
|
* fixes to combust event so that it is raised only once on combustion.Andrew Ardill2011-01-18-14/+44
| | | | minor fixes to imports
* Updates to all Entities to use getBukkitEntity() any time an event isAndrew Ardill2011-01-18-13/+4
| | | | | raised. Similar update to CraftVehicle and CraftLivingEntity
* created getBukkitEntity() in minecraft.server.EntityAndrew Ardill2011-01-18-0/+10
| | | | | This returns a protected field that is set in the constructor of each minecraft.server.Entity to a new CraftEntity of some specific type.
* Implementation of the EntityDamage*Events.Andrew Ardill2011-01-16-4/+43
| | | | | | | | | | | | | Many files were added to enable the correct hooking of these events, and a new event EntityDamageByProjectileEvent. EntityDamageByProjectileEvent adds the ability to get the projectile entity (such as an egg) and also set if the projectile 'bounces'. Only two projectiles currently respond to bouncing, Arrow and Fish - were if the fish bounces it means the fish is not hooked. Bouncing is independent of any damage caused via the event. In addition, the changes to EntityDamageEvent that enable setting post-event damage were implemented in all hooks. Finally, a bug in CraftArrow was fixed, where the constructor was not declared public.
* All entity stuff in org.bukkit.craftbukkit moved to ↵Dinnerbone2011-01-15-3/+3
| | | | org.bukkit.craftbukkit.entity
* Events should be present tense, not paste tense.Erik Broes2011-01-15-2/+2
|
* Update to Minecraft Server 1.2Dinnerbone2011-01-14-61/+102
|
* Updated against new mc-dev format, takes out quite some casting troubles at ↵Erik Broes2011-01-11-37/+35
| | | | the cost of extra ()'s
* Added passenger methods to Vehicle/LivingEntity.sk89q2011-01-07-1/+8
|
* Direct fire exposure eventangelsl2011-01-03-0/+870