1
0
mirror of https://github.com/SmallJoker/minetest-u_skinsdb.git synced 2025-07-13 21:40:26 +02:00

Add default; do not use character.x

This commit is contained in:
SmallJoker
2014-07-30 17:49:51 +02:00
parent 29332b7cf3
commit 7c25df22dc
2 changed files with 5 additions and 7 deletions

View File

@ -30,7 +30,7 @@ u_skins.save = function()
local output = io.open(u_skins.file, "w")
for name, skin in pairs(u_skins.u_skins) do
if name and skin then
if skin ~= "character_1" then
if skin ~= u_skins.default then
output:write(name.." "..skin.."\n")
end
end