encrypt improvements

This commit is contained in:
kepler155c@gmail.com
2019-06-30 14:47:45 -04:00
parent 67779ab814
commit 721cd840b3
6 changed files with 262 additions and 27 deletions

View File

@@ -56,7 +56,7 @@ Util.Timer = Util.timer -- deprecate
function Util.throttle(fn)
local ts = os.clock()
local timeout = .095
local timeout = .295
return function(...)
local nts = os.clock()
if nts > ts + timeout then