mouse_drag event not emitted for right-click or middle-click dragging
tehbiga opened this issue · 1 comments
Minecraft Version
1.20.x
Version
1.109.0
Details
I'm not sure if I've seen this before, but it seems that mouse_drag
events are not being emitted when dragging the right or middle mouse button.
Here is the code I used to check, just through the interactive lua
program:
while true do local e,b,x,y=os.pullEvent('mouse_drag') print(e,b,x,y) end