Files
Inventory-Manager-CC/etc/apps.db
MayaTheShy bb139b4afd fix: override dofile to preserve Opus env (require was nil in sub-modules)
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.
2026-03-22 18:40:03 -04:00

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",
},
}