From 3c723a53553e112a73a0ba53842829c1f0450063 Mon Sep 17 00:00:00 2001 From: WardenPotato Date: Thu, 22 Feb 2024 14:48:56 +0100 Subject: [PATCH] Fix users being able to infinitely request a full data refresh for all connected players --- lua/ulib/init.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/ulib/init.lua b/lua/ulib/init.lua index d5edb41..9ecb716 100644 --- a/lua/ulib/init.lua +++ b/lua/ulib/init.lua @@ -97,6 +97,7 @@ if not ULib then end local function clReady( ply ) + if ply.ulib_ready then return end ply.ulib_ready = true hook.Call( ULib.HOOK_LOCALPLAYERREADY, _, ply ) end