From d30fb74d9a4f55a5058fd83f5a1ebc98ddbb6986 Mon Sep 17 00:00:00 2001 From: Evil Factory <36804725+evilfactory@users.noreply.github.com> Date: Tue, 30 Nov 2021 11:38:45 -0300 Subject: [PATCH] whoops mistake in docs --- docs/lua/Hooks.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/lua/Hooks.lua b/docs/lua/Hooks.lua index 2cbb7bf24..2a47db3d3 100644 --- a/docs/lua/Hooks.lua +++ b/docs/lua/Hooks.lua @@ -151,13 +151,13 @@ function serverLog(text, serverLogMessageType) end --- Called each time a new round start job has been assigned, this context allows for you to change the role before it's applied in game. -- @realm shared -function jobsAssigned() end -- @usage -- Hook.Add("jobsAssigned", "", function () -- for key, value in pairs(Client.ClientList) do -- value.AssignedJob = {JobPrefab.Get("assistant"), 0} -- end -- end) +function jobsAssigned() end --- Check if a client is allowed to hear radio voice to another client, return true to allow, false to disallow. -- @realm shared