OnClientInputEventHandler:

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

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