Add armor.set_skin_mod() to set the skin mod name manually (#51)

Useful for skin mod forks that do not use the same name.
此提交包含在:
Jordan Irwin
2021-06-23 08:28:29 -07:00
提交者 GitHub
父節點 0dffd62fb0
當前提交 1dec1f2153

查看文件

@ -673,3 +673,10 @@ armor.drop_armor = function(pos, stack)
end
end
end
--- Allows skin mod to be set manually.
--
-- Useful for skin mod forks that do not use the same name.
armor.set_skin_mod = function(mod)
armor.skin_mod = mod
end