feat(control): Implement some missing functions for Control

This commit is contained in:
oof2win2
2023-09-06 20:45:33 +02:00
parent 7d5254f44e
commit b437846989

View File

@@ -106,5 +106,19 @@ remote.add_interface("freeplay",
end,
set_chart_distance = function(value)
global.chart_distance = tonumber(value)
end,
set_disable_crashsite = function()
end,
get_ship_items = function()
return {}
end,
set_ship_items = function(tbl)
return
end,
get_debris_items = function ()
return {}
end,
set_debris_items = function ()
return
end
})