1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2024-12-13 11:40:29 +00:00

Fix Bug with peripheral.find()

This commit is contained in:
Wilma456 2017-06-18 15:58:06 +02:00 committed by GitHub
parent bfb682bef9
commit 4580f10567

View File

@ -105,8 +105,8 @@ function wrap( _sSide )
end
function find( sType, fnFilter )
if type( _sSide ) ~= "string" then
error( "bad argument #1 (expected string, got " .. type( _sSide ) .. ")", 2 )
if type( sType ) ~= "string" then
error( "bad argument #1 (expected string, got " .. type( sType ) .. ")", 2 )
end
if fnFilter ~= nil and type( fnFilter ) ~= "string" then
error( "bad argument #2 (expected function, got " .. type( fnFilter ) .. ")", 2 )