Fix player armor enchanting overlay (#2161)

This commit is contained in:
AFCMS 2022-05-02 10:39:49 +02:00 committed by Gitea
parent 3ca40cd4e4
commit d0b60e2399
1 changed files with 4 additions and 2 deletions

View File

@ -277,8 +277,10 @@ function mcl_enchanting.initialize()
new_def.groups.not_in_craft_guide = 1
new_def.groups.enchanted = 1
if new_def._mcl_armor_texture and not type(new_def._mcl_armor_texture) == "function" then
new_def._mcl_armor_texture = new_def._mcl_armor_texture .. mcl_enchanting.overlay
if new_def._mcl_armor_texture then
if type(new_def._mcl_armor_texture) == "string" then
new_def._mcl_armor_texture = new_def._mcl_armor_texture .. mcl_enchanting.overlay
end
end
new_def._mcl_enchanting_enchanted_tool = new_name