1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2024-09-28 15:08:47 +00:00

Merge pull request #348 from Wilma456/termcheck

Update term.redirect check to new style
This commit is contained in:
Daniel Ratcliffe 2017-07-25 19:03:55 +01:00 committed by GitHub
commit 35d29e1d88

View File

@ -11,9 +11,9 @@ end
local term = {}
term.redirect = function( target )
if target == nil or type( target ) ~= "table" then
error( "Invalid redirect target", 2 )
end
if type( target ) ~= "table" then
error( "bad argument #1 (expected table, got " .. type( target ) .. ")", 2 )
end
if target == term then
error( "term is not a recommended redirect target, try term.current() instead", 2 )
end