1
0
Fork 0
forked from Simnation/Main
Main/resources/[housing]/[bob74_ipl]/dlc_chopshop/lifeguard.lua
2025-06-10 20:01:53 +02:00

21 lines
475 B
Lua

-- Lifeguard: -1488.153, -1021.166, 5.000
exports('GetChopShopLifeguardObject', function()
return ChopShopLifeguard
end)
ChopShopLifeguard = {
Ipl = {
ipl = "m23_2_lifeguard_access",
Load = function()
EnableIpl(ChopShopLifeguard.Ipl.ipl, true)
end,
Remove = function()
EnableIpl(ChopShopLifeguard.Ipl.ipl, false)
end
},
LoadDefault = function()
ChopShopLifeguard.Ipl.Load()
end
}