Update playerload.lua

This commit is contained in:
Brandon Sturgeon 2024-01-07 16:00:44 -08:00 committed by GitHub
parent fdfab5de1e
commit 604c44c5ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,5 +11,7 @@ hook.Add( "SetupMove", "GM_FullLoadTrigger", function( ply, _, cmd )
if cmd:IsForced() then return end
loadQueue[ply] = nil
hook.Run( "PlayerFullLoad", ply )
ProtectedCall( function()
hook.Run( "PlayerFullLoad", ply )
end )
end )