Skip to content

Commit

Permalink
Remove reference to event that is way too new
Browse files Browse the repository at this point in the history
Literally the most recent Bukkit commit. Updating is hard and this is
unneeded.
  • Loading branch information
mcmonkey4eva committed Nov 18, 2015
1 parent fdcb21c commit 88e92b2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/net/aufdemrand/denizen/Denizen.java
Expand Up @@ -610,7 +610,7 @@ public void onEnable() {
ScriptEvent.registerScriptEvent(new EntityTargetsScriptEvent());
ScriptEvent.registerScriptEvent(new EntityTeleportScriptEvent());
ScriptEvent.registerScriptEvent(new EntityUnleashedScriptEvent());
ScriptEvent.registerScriptEvent(new FireworkBurstsScriptEvent());
//ScriptEvent.registerScriptEvent(new FireworkBurstsScriptEvent());
ScriptEvent.registerScriptEvent(new FurnaceBurnsItemScriptEvent());
ScriptEvent.registerScriptEvent(new FurnaceSmeltsItemScriptEvent());
ScriptEvent.registerScriptEvent(new HangingBreaksScriptEvent());
Expand Down
Expand Up @@ -12,16 +12,20 @@
import org.bukkit.event.Listener;
import org.bukkit.event.entity.FireworkExplodeEvent;

// TODO: Allow me when we update
/*
public class FireworkBurstsScriptEvent extends BukkitScriptEvent implements Listener {
// <--[event]
// TODO: <-- [ event ]
// @Events
// firework bursts (in <area>)
//
// @Regex ^on firework bursts( in ((notable (cuboid|ellipsoid))|([^\s]+)))?$
//
// @Cancellable true
//
// @Warning not yet implemented
//
// @Triggers when a firework bursts (explodes).
//
// @Context
Expand Down Expand Up @@ -91,3 +95,4 @@ public void onFireworkBursts(FireworkExplodeEvent event) {
event.setCancelled(cancelled);
}
}
*/

0 comments on commit 88e92b2

Please sign in to comment.