Changed our custom chat events to be async

This commit is contained in:
GJ 2013-02-23 21:29:15 -05:00
parent 20970e430c
commit 9759224690
2 changed files with 2 additions and 0 deletions

View File

@ -73,6 +73,7 @@ Version 1.4.00-dev
= Fixed a bug where a new party leader wasn't appointed, after the previous party leader left
= Fixed a bug where Disarm and Deflect had wrong values
= Fixed Magic Hunter (Fishing ability) favoring certain enchants
! Changed our custom chat events to be async
! Changed some config value key names regarding double drops and XP - make sure you copy any custom values to your new config after updating.
! Changed Green Terra blocks to be determined via permissions instead of the config file
! Config files are now backed up even when running in SQL mode

View File

@ -13,6 +13,7 @@ public abstract class McMMOChatEvent extends Event implements Cancellable {
private String message;
protected McMMOChatEvent(Plugin plugin, String sender, String displayName, String message) {
super(true);
this.plugin = plugin;
this.sender = sender;
this.displayName = displayName;