Fix typo (the different casing standards are annoying)

This commit is contained in:
osmarks 2018-07-27 09:52:59 +01:00
parent 5cfd6d2c4d
commit 5832093468
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ local function cache(item, chest, slot)
if display_name_cache[idx] then
return display_name_cache[idx]
else
local n = chest.getItemMeta(slot).display_name
local n = chest.getItemMeta(slot).displayName
display_name_cache[idx] = n
return n
end