1
0
Fork 0
forked from Simnation/Main
Main/resources/[housing]/bob74_ipl/dlc_chopshop/lifeguard.lua

22 lines
475 B
Lua
Raw Normal View History

2025-06-10 17:37:12 +02:00
-- 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
}