Fixed issue with async chatting. Closes #731

This commit is contained in:
GJ
2013-02-24 13:25:35 -05:00
parent 3b05bb96e3
commit e9dcb31002
6 changed files with 33 additions and 11 deletions

View File

@ -13,6 +13,11 @@ public class McMMOPartyChatEvent extends McMMOChatEvent {
this.party = party;
}
public McMMOPartyChatEvent(Plugin plugin, String sender, String displayName, String party, String message, boolean isAsync) {
super(plugin, sender, displayName, message, isAsync);
this.party = party;
}
/**
* @return String name of the party the message will be sent to
*/