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.
This commit is contained in:
Jordan Irwin 2021-06-23 08:28:29 -07:00 committed by GitHub
parent 0dffd62fb0
commit 1dec1f2153
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -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