2026-04-14 17:41:39 +02:00

11 lines
331 B
Lua

if not lib.checkDependency('ox_core', '0.21.3', true) then return end
local Ox = require '@ox_core.lib.init' --[[@as OxClient]]
local utils = require 'client.utils'
local player = Ox.GetPlayer()
---@diagnostic disable-next-line: duplicate-set-field
function utils.hasPlayerGotGroup(filter)
return player.getGroup(filter)
end