I'm using the autoclicker in Minecraft, and my mouse keeps moving to the bottom right corner of the screen. It was very fixable just by changing the pyautogui.click(pyautogui.position()) to pyautogui.click(x=0, y=0), but I'm wondering if putting that in the source code will break anything or not, because otherwise I think it's a good idea to do so. Thanks.
I'm using the autoclicker in Minecraft, and my mouse keeps moving to the bottom right corner of the screen. It was very fixable just by changing the
pyautogui.click(pyautogui.position())
topyautogui.click(x=0, y=0)
, but I'm wondering if putting that in the source code will break anything or not, because otherwise I think it's a good idea to do so. Thanks.