Make sure to clean the chatStore.

This commit is contained in:
KHobbits 2012-01-18 23:08:40 +00:00
parent cd8cc63113
commit 36bc1adf83
1 changed files with 2 additions and 1 deletions

View File

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