diff options
author | SmallJoker <st.rentsch@hotmail.com> | 2014-07-23 13:46:42 +0200 |
---|---|---|
committer | SmallJoker <st.rentsch@hotmail.com> | 2014-07-23 13:46:42 +0200 |
commit | dc44a8805fc5e3d5c8a3b4464c377dbdbf4a7e68 (patch) | |
tree | 96a443c2e4783eb31af44e181cc4b57b0b2f0310 /u_skins/meta.lua | |
parent | 597213a67d3e224ef0e5f8aabdb53861d8c4db77 (diff) |
Update
Diffstat (limited to 'u_skins/meta.lua')
-rw-r--r-- | u_skins/meta.lua | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/u_skins/meta.lua b/u_skins/meta.lua deleted file mode 100644 index 350dbe8..0000000 --- a/u_skins/meta.lua +++ /dev/null @@ -1,15 +0,0 @@ -u_skins.meta = {} -for _, i in ipairs(u_skins.list) do - u_skins.meta[i] = {} - local f = io.open(u_skins.modpath.."/meta/"..i..".txt") - local data = nil - if f then - data = minetest.deserialize("return {"..f:read('*all').."}") - f:close() - end - data = data or {} - u_skins.meta[i].name = data.name or "" - u_skins.meta[i].author = data.author or "" - u_skins.meta[i].description = data.description or nil - u_skins.meta[i].comment = data.comment or nil -end |