CC:Tweaked dofile loads files with _G as environment, but Opus injects require into the program's sandbox _ENV. All dofile'd modules (especially display.lua) could not see require. Also add dropperController to apps.db.
29 lines
652 B
Plaintext
29 lines
652 B
Plaintext
{
|
|
[ "im_inventory_manager" ] = {
|
|
title = "Inv Manager",
|
|
category = "Inventory",
|
|
run = "inventoryManager.lua",
|
|
},
|
|
[ "im_inventory_client" ] = {
|
|
title = "Inv Display",
|
|
category = "Inventory",
|
|
run = "inventoryClient.lua",
|
|
},
|
|
[ "im_crafting_turtle" ] = {
|
|
title = "Crafting Turtle",
|
|
category = "Inventory",
|
|
run = "craftingTurtle.lua",
|
|
requires = "turtle",
|
|
},
|
|
[ "im_web_bridge" ] = {
|
|
title = "Inv Web Bridge",
|
|
category = "Inventory",
|
|
run = "inventoryWebBridge.lua",
|
|
},
|
|
[ "im_dropper" ] = {
|
|
title = "Dropper Ctrl",
|
|
category = "Inventory",
|
|
run = "dropperController.lua",
|
|
},
|
|
}
|