Fix mesh hand unknown item bug + fix fast digging disabled for simple skins

This commit is contained in:
Johannes Fritz 2023-01-25 12:13:53 -06:00 committed by cora
parent d3aa33915b
commit 489932ca36

View File

@ -36,8 +36,7 @@ function mcl_skins.get_skin_list()
table.insert(list, {
texture = skin.texture,
slim_arms = skin.slim_arms,
id = skin.texture:gsub(".png$", "")
.. (skin.slim_arms and "_female" or "_male") .. game_mode,
id = skin.texture:gsub(".png$", "") .. (skin.slim_arms and "_female" or "_male") .. game_mode,
creative = game_mode == "_crea"
})
end