Started by
ItsJustKen
on
Topic category: Help with Minecraft modding (Java Edition)
https://imgur.com/a/ZAuR4IC
I made a simple procedure that plays one of multiple sounds on right click with a cool down.
But whenever I right click, it plays two of the sounds THEN cools down, which leads me to believe it's registering two clicks in rapid succession before cooling.
Is there any way besides what I've done to only allow ONE input?
You need to put the entire procedure in an "if" block, then attach a "not" block, then "is provided world client-side" That fixes a lot of glitches, including double click registration.
The double click problem is because it's doing it client and server at the same time, single player still as a server, this does create alot of problems