RealBadAngel
2013-07-23 b7649c75fc6bc2618db6944d6cc74ce419e4c57c
1
2
3
4
5
6
7
8
9
10
function get_item_meta (string)
    if string.find(string, "return {") then
        return minetest.deserialize(string)
    else return nil
    end
end
 
function set_item_meta (table)
    return minetest.serialize(table)
end