Fix ClientChatEvent using incompatible proxies

Signed-off-by: Max <maxh2709@gmail.com>
This commit is contained in:
Max
2022-06-08 17:34:26 +02:00
parent c77f040c21
commit 04aa5c1bb2

View File

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