1
0
Fork 0
forked from Simnation/Main
Main/resources/[tools]/bl_bridge/server/notify/qb.lua

11 lines
341 B
Lua
Raw Normal View History

2025-08-04 04:28:47 +02:00
---@diagnostic disable: lowercase-global
---@param source number Source of player
---@param data NotificationParams Notification data
function notify(source, data)
local title, type, duration in data
if type == 'inform' then type = 'info' end
TriggerClientEvent('QBCore:Notify', source, title, type, duration)
end
return notify