Update init.lua

This commit is contained in:
Josh Mars 2017-03-18 11:02:18 -04:00 committed by GitHub
parent 0a349e7512
commit 9d246ab25f

View File

@ -31,10 +31,9 @@ local function object_detector_scan(pos)
if next(objs) == nil then return false end if next(objs) == nil then return false end
local scanname = minetest.get_meta(pos):get_string("scanname") local scanname = minetest.get_meta(pos):get_string("scanname")
local sep = ","
local scan_for = {} local scan_for = {}
for str in string.gmatch(scanname, "([^"..sep.."]+)") do for _, str in pairs(string.split(scanname:gsub(" ", ""), ",")) do
scan_for[str:gsub("%s+", "")] = true scan_for[str] = true
end end
local every_player = scanname == "" local every_player = scanname == ""