Make syncState rate limit stricter

This commit is contained in:
NullBite 2022-10-31 08:24:09 -04:00
parent cca938ccc1
commit 5fbea8ebd9
Signed by: nullbite
GPG Key ID: 6C4D545385D4925A

View File

@ -331,7 +331,7 @@ do
local counter=0
function syncState()
-- ping.setSnoring(skin_state.snore_enabled)
if counter < 5 then
if counter < 3 then
ping.syncState((setLocalState()))
counter=counter+1
end