summaryrefslogtreecommitdiffstats
path: root/src/main/java/net/minecraft/server/Explosion.java
Commit message (Collapse)AuthorAgeLines
* Teach EnderDragon how to throw EntityExplosionEvents when it breaks blocksAndrew Ardill2011-12-08-1/+1
| | | | | | | | | | | | We also teach CraftWorld how to explode an event, taken from Explosion.a(boolean) (the code that breaks blocks and drops them on the ground). The EnderDragon has a flag that slows it down when it hits unbreakable blocks: Obsidian, White Stone or Bedrock. It might be useful to extend the event so that plugins can set this. Letting the API set the default yield for an explosion event has been deprecated, so we now set the default yield using the appropriate constructor.
* Clean-up some events to maintain general styleAndrew Ardill2011-12-05-3/+3
|
* Register damage caused by PrimedTNT entities as BLOCK_EXPLOSIONAndrew Ardill2011-12-02-1/+9
| | | | This fixes BUKKIT-74
* Update for 1.0.0Erik Broes2011-11-20-24/+31
|
* Fixed Explosion cast errorNathan Adams2011-10-11-2/+1
|
* Changing the blockList on explosions now correctly updates which blocks are ↵Nathan Adams2011-10-11-0/+9
| | | | changed
* Rename revision 2Dinnerbone2011-09-15-2/+2
|
* Update for Minecraft 1.8Dinnerbone2011-09-15-3/+4
|
* Update for 1.7.3Dinnerbone2011-07-08-1/+1
|
* Update to Minecraft 1.7Dinnerbone2011-06-30-1/+1
|
* Massive renaming update in nms. If you bypassed Bukkit, you will likely break.Erik Broes2011-06-27-23/+13
| | | | Also minimized all the nms diffs and generic cleanups all around.
* Fixed fireball explosions not producing fire.EvilSeph2011-06-10-1/+2
|
* Update for 1.5_02.Erik Broes2011-04-21-3/+3
|
* Update for 1.4_00_01 -- if you bypassed Bukkit, you will most likely break.Erik Broes2011-04-20-72/+72
|
* Updated for the cleanups done in BukkitErik Broes2011-03-26-2/+1
|
* Generic code cleanupErik Broes2011-02-23-9/+12
|
* Update to Minecraft 1.3 betaDinnerbone2011-02-23-7/+7
|
* Minor cleaning of codeErik Broes2011-02-20-4/+3
|
* fixed buttons, platesTahg2011-02-19-1/+1
| | | | | added yield to explosion added event for chunk unloading
* added method to force an inventory updateTahg2011-02-08-1/+1
|
* fixed explosionsTahg2011-02-08-0/+3
|
* Adding Craftbukkit comment-tags.culturespy2011-02-08-0/+2
|
* Make Explosion remember whether it was canceled so that WorldServer can ↵culturespy2011-02-08-0/+2
| | | | avoid sending unneeded explode packets.
* Port to new mc-dev format.Erik Broes2011-01-30-160/+160
|
* Fix NPE from location incorrectly being implemented in Explosion.speakeasy2011-01-22-6/+2
|
* Explosion remembers its Location.Adam Tanner2011-01-22-1/+9
|
* fixes some explosion events to stop accessing null entities. Andrew Ardill2011-01-20-80/+64
| | | | Placed some tags against some spammy events.
* Fixing some entity damage eventsAndrew Ardill2011-01-18-13/+21
|
* EntityExplodeEvent commit for craftbukkit.speakeasy2011-01-18-32/+63
|
* Implementation of the EntityDamage*Events.Andrew Ardill2011-01-16-3/+2
| | | | | | | | | | | | | 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-5/+5
|
* Update to Minecraft Server 1.2Dinnerbone2011-01-14-4/+3
|
* Updated against new mc-dev format, takes out quite some casting troubles at ↵Erik Broes2011-01-11-29/+26
| | | | the cost of extra ()'s
* Explosion damage entity hook.angelsl2011-01-03-0/+220