Main/resources/[carscripts]/community_bridge/modules/housing/qb-houses/server.lua
2025-08-06 16:37:06 +02:00

11 lines
No EOL
322 B
Lua

if GetResourceState('qb-houses') == 'missing' then return end
Housing = Housing or {}
RegisterNetEvent('qb-houses:server:SetInsideMeta', function(insideId, bool)
local src = source
insideId = bool and insideId or nil
TriggerEvent('community_bridge:Server:_OnPlayerInside', src, insideId)
end)
return Housing