1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-06 14:46:32 +02:00

Make sure to clean the chatStore.

This commit is contained in:
KHobbits
2012-01-18 23:08:40 +00:00
parent c2b08079d7
commit 3c4076d4c6

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);
}
}