diff --git a/src/main/java/org/bukkit/event/Event.java b/src/main/java/org/bukkit/event/Event.java index 273e5b26..d754d714 100644 --- a/src/main/java/org/bukkit/event/Event.java +++ b/src/main/java/org/bukkit/event/Event.java @@ -17,6 +17,7 @@ public Event() { /** * This constructor is used to explicitly declare an event as synchronous or asynchronous. + * * @param isAsync true indicates the event will fire asynchronously. false by default */ public Event(boolean isAsync) { @@ -47,6 +48,7 @@ public String getEventName() { *
  • Some implementations may selectively declare a specific event use as asynchronous. * This behavior should be clearly defined.
  • *
  • Asynchronous calls are not calculated in the plugin timing system.
  • + * * @return false by default, true if the event fires asynchronously */ public final boolean isAsynchronous() {