trainworld_computercraft/computer/22/bg.lua
2025-07-03 01:23:46 +02:00

11 lines
No EOL
195 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