trainworld_computercraft/disk/3/bg
2025-07-03 01:23:46 +02:00

11 lines
196 B
Text

if not shell.openTab then
printError("Requires multishell")
return
end
local tArgs = { ... }
if #tArgs > 0 then
shell.openTab(table.unpack(tArgs))
else
shell.openTab("shell")
end