OnClientInputEventHandler:

- Fixed mouse event firing twice per click.
This commit is contained in:
Micle
2022-10-31 20:34:31 +00:00
parent ea305c07b5
commit 4807adcfd3

View File

@ -65,7 +65,7 @@ public class OnClientInputEventHandler {
}
@SubscribeEvent
public void MouseInputEvent(InputEvent.MouseButton event) {
public void MouseInputEvent(InputEvent.MouseButton.Post event) {
handle(event.getAction(), event.getButton());
}