Editing Module:ItemDataGive feedback
The edit can be undone.
Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.
| Latest revision | Your text | ||
| Line 378: | Line 378: | ||
local tbl = get_similar_items("IsDisabled") | local tbl = get_similar_items("IsDisabled") | ||
for _, v in ipairs(tbl) do | for _, v in ipairs(tbl) do | ||
if item_type == | if item_type == nil then | ||
-- return only regular items | -- return only regular items | ||
if (v["IsDisabled"] == false | if (v["IsDisabled"] == false and v["StreetBrawl"] == false and v["Name"] ~= nil) then | ||
iter = iter + 1 | iter = iter + 1 | ||
end | end | ||
elseif item_type == "Street Brawl" then | elseif item_type == "Street Brawl" then | ||
-- return only street brawl items | -- return only street brawl items | ||
if (v["IsDisabled"] == false | if (v["IsDisabled"] == false and v["StreetBrawl"] == true and v["Name"] ~= nil) then | ||
iter = iter + 1 | iter = iter + 1 | ||
end | end | ||