Make sure to clean the chatStore.

This commit is contained in:
KHobbits 2012-01-18 23:08:40 +00:00
parent cd8cc63113
commit 36bc1adf83

View File

@ -21,6 +21,7 @@ public class EssentialsChatPlayerListenerHighest extends EssentialsChatPlayer
@Override @Override
public void onPlayerChat(final PlayerChatEvent event) public void onPlayerChat(final PlayerChatEvent event)
{ {
final ChatStore chatStore = delChatStore(event);
if (isAborted(event)) if (isAborted(event))
{ {
return; return;
@ -29,6 +30,6 @@ public class EssentialsChatPlayerListenerHighest extends EssentialsChatPlayer
/** /**
* This file should handle charging the user for the action before returning control back * This file should handle charging the user for the action before returning control back
*/ */
charge(event, getChatStore(event)); charge(event, chatStore);
} }
} }