mirror of
https://github.com/sky-systems/sky_phone.git
synced 2026-08-30 08:01:37 +00:00
734f4651cb
Co-authored-by: DerEchteAlec <alec.schitzkat@luwan.io>
12 lines
326 B
Lua
12 lines
326 B
Lua
local provider_name = "vms"
|
|
local resource_name = "vms_housing"
|
|
|
|
Bridge.Housing.RegisterClientProvider(provider_name, {
|
|
execute = function()
|
|
if GetResourceState(resource_name) ~= "started" then
|
|
return false, "provider_unavailable"
|
|
end
|
|
return false, "capability_unavailable"
|
|
end,
|
|
})
|