GMOD_disease/lua/autorun/server/symptoms/sv_cough.lua

11 lines
299 B
Lua
Raw Normal View History

symbtoms_list = include("sv_symbtoms.lua")
2023-09-01 16:04:20 -04:00
table.insert(symbtoms_list, "cough" = cough)
2023-09-01 16:04:20 -04:00
--- Send a packet to trigger cough animation to the player
---@param side UID64 string? UID64 of the player
---@param side level float? A float between 0 and 1
2023-09-01 16:04:20 -04:00
---@return void
function cough(UID64, level)
2023-09-01 16:04:20 -04:00
end