summaryrefslogtreecommitdiffstats
path: root/src/main/java/net/minecraft/server/EntityBoat.java
Commit message (Collapse)AuthorAgeLines
* Entity audit. Adds checks for null entities, and adds conformity.Andrew Ardill2011-01-21-7/+29
|
* fixes to combust event so that it is raised only once on combustion.Andrew Ardill2011-01-18-1/+0
| | | | minor fixes to imports
* Updates to all Entities to use getBukkitEntity() any time an event isAndrew Ardill2011-01-18-12/+8
| | | | | raised. Similar update to CraftVehicle and CraftLivingEntity
* created getBukkitEntity() in minecraft.server.EntityAndrew Ardill2011-01-18-0/+5
| | | | | This returns a protected field that is set in the constructor of each minecraft.server.Entity to a new CraftEntity of some specific type.
* All entity stuff in org.bukkit.craftbukkit moved to ↵Dinnerbone2011-01-15-2/+2
| | | | org.bukkit.craftbukkit.entity
* Various fixes; boats, minecarts, musicblocksDinnerbone2011-01-14-2/+2
|
* Update to Minecraft Server 1.2Dinnerbone2011-01-14-27/+28
|
* Updated against new mc-dev format, takes out quite some casting troubles at ↵Erik Broes2011-01-11-47/+40
| | | | the cost of extra ()'s
* Implemented World.spawnBoat(), added CraftMappable interface that defines a ↵sk89q2011-01-07-2/+8
| | | | method to get an org.bukkit.craftbukkit.CraftEntity from implementing net.minecart.server.Entity entities, changed CraftWorld.toCraftEntity() to use this new interface for boats and minecarts.
* Implemented boat, fixed some event issues with minecarts, and implemented ↵sk89q2011-01-07-0/+362
the events for boats that were implemented for minecarts.