Fix ClientChatEvent.RECEIVED *not* using CompoundEventResult

I was a bit too eager with the previous commit, sorry :P

Signed-off-by: Max <maxh2709@gmail.com>
This commit is contained in:
Max
2022-06-08 18:43:32 +02:00
parent 04aa5c1bb2
commit d8cf9ed7a5

View File

@@ -44,7 +44,7 @@ public interface ClientChatEvent {
/**
* @see Received#process(ChatType, Component, ChatSender)
*/
Event<Received> RECEIVED = EventFactory.createEventResult();
Event<Received> RECEIVED = EventFactory.createCompoundEventResult();
@Environment(EnvType.CLIENT)
interface Process {