fix internal identifiers

This commit is contained in:
osmarks 2018-08-13 08:59:10 +01:00
parent eb289d57cf
commit 5dba54b933

View File

@ -170,9 +170,9 @@ end
-- Gets the internal identifier of an item - unique (hopefully) per type of item, as defined by NBT, metadata/damage and ID/name -- Gets the internal identifier of an item - unique (hopefully) per type of item, as defined by NBT, metadata/damage and ID/name
local function get_internal_identifier(item) local function get_internal_identifier(item)
local n = item.name local n = item.ID
if item.damage then n = n .. ":" .. item.damage end if item.meta then n = n .. ":" .. item.meta end
if item.nbtHash then n = n .. "#" .. item.nbtHash end if item.NBT_hash then n = n .. "#" .. item.NBT_hash end
return n return n
end end