summaryrefslogtreecommitdiffstats
path: root/src/main/java/net/minecraft/server/EntityBoat.java
Commit message (Collapse)AuthorAgeLines
* [Bleeding] Added getting and setting drops to all appropriate events. Fixes ↵Celtic Minstrel2012-03-21-13/+49
| | | | | | | | BUKKIT-397 and fixes BUKKIT-1252 - Allows drops in creative mode by adding items to the getDrops() list - Contents of containers are not reported - Contents of storage minecarts are not reported
* Updated CraftBukkit to 1.2Nathan Adams2012-03-01-16/+16
|
* Fixed sprinting while breaking a painting edge case. Fixes BUKKIT-740EvilSeph2012-02-13-8/+8
|
* Updated to Minecraft 1.1Erik Broes2012-01-12-5/+5
|
* Update to mc-dev rename revision 01Nathan Adams2012-01-12-1/+1
|
* Prevent VehicleEnterEvent being sent when player exits vehicle.Sam Wilson2011-12-19-9/+0
| | | | | | | | | | | | | | | | | Fix for BUKKIT-223. Issue BUKKIT-223: When a player exits a minecart or boat, both a VehicleExitEvent and a VehicleEnterEvent are fired. Only the VehicleExitEvent should fire. Reason for bug: This occurs because the VehicleEnterEvent is fired in EntityBoat.b and EntityMinecart.b *any* time a player right-clicks on a vehicle, whether the right-click is to enter the vehicle or exit it. Fix: By moving the creation of VehicleEnterEvents from EntityBoat.b and EntityMinecart.b to Entity.setPassengerOf, we can create either a VehicleEnterEvent or a VehicleExitEvent, depending on whether the player is entering or exiting a vehicle.
* Updated to use mc-dev rename revision 1Nathan Adams2011-11-30-2/+2
|
* Update for 1.0.0Erik Broes2011-11-20-92/+113
|
* Added a case previously not covered by VehicleDestroyEvent for boats.sk89q2011-10-13-0/+8
|
* Boat get/set (double) occupied acceleration, (double) unoccupied ↵sk89q2011-09-25-3/+19
| | | | deceleration, (boolean) work on land. Good values to maximize boat utility: 0.6 (fast accel.), 0.99 (no loss of boat), true/false, respectively.
* Rename revision 2Dinnerbone2011-09-15-1/+1
|
* Update for Minecraft 1.8Dinnerbone2011-09-15-16/+16
|
* Update to Minecraft 1.7Dinnerbone2011-06-30-5/+5
|
* Massive renaming update in nms. If you bypassed Bukkit, you will likely break.Erik Broes2011-06-27-26/+14
| | | | Also minimized all the nms diffs and generic cleanups all around.
* Generic cleanupErik Broes2011-06-12-1/+1
|
* Fixed issues introduced by recent 'portal changes' commit.EvilSeph2011-06-08-0/+1
|
* Update for 1.6.6Erik Broes2011-05-31-1/+9
|
* Update for 1.6.5Erik Broes2011-05-30-6/+6
|
* Implemented 1.6!Dinnerbone2011-05-26-46/+60
|
* Update for 1.5_02.Erik Broes2011-04-21-15/+15
|
* Update for 1.4_00_01 -- if you bypassed Bukkit, you will most likely break.Erik Broes2011-04-20-20/+21
|
* Added VEHICLE_DESTROY eventRobert Sargant2011-04-02-0/+12
|
* Updated to Minecraft version 1.4Dinnerbone2011-03-31-10/+14
|
* Updated for the cleanups done in BukkitErik Broes2011-03-26-12/+7
|
* Generic code cleanupErik Broes2011-02-23-1/+4
|
* Update to Minecraft 1.3 betaDinnerbone2011-02-23-27/+27
|
* Added MaxSpeed methods to minecarts. Added MaxSpeed methods to boats. Added ↵afforess2011-02-12-1/+2
| | | | SlowWhenEmpty, FlyingMod, and DerailedMod methods to minecarts.
* Clean vehicle code.Erik Broes2011-02-02-11/+7
|
* Implemented VEHICLE_UPDATEDinnerbone2011-02-01-2/+3
|
* Fixed VEHICLE_MOVEDinnerbone2011-02-01-4/+5
|
* Fixed rogue chmodsErik Broes2011-01-30-0/+0
|
* Reworked getEntity; Hi instanceof, bay 16 classesErik Broes2011-01-30-7/+0
|
* Port to new mc-dev format.Erik Broes2011-01-30-253/+268
|
* 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.