11 lines
196 B
Lua
11 lines
196 B
Lua
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
|