From 5fbea8ebd99aed4e2eb5b4a631d5a50ecc4167c5 Mon Sep 17 00:00:00 2001 From: NullBite Date: Mon, 31 Oct 2022 08:24:09 -0400 Subject: [PATCH] Make syncState rate limit stricter --- script.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script.lua b/script.lua index f953ea0..5cd6082 100644 --- a/script.lua +++ b/script.lua @@ -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