mirror of
https://github.com/appgurueu/modlib.git
synced 2024-11-25 16:53:46 +01:00
Updates via shellscript
This commit is contained in:
parent
67d45d5660
commit
b9342c4ba4
17
init.lua
17
init.lua
@ -75,6 +75,9 @@ mt_ext = {
|
|||||||
img = nil
|
img = nil
|
||||||
end
|
end
|
||||||
return img or mt_ext.texture_modifier_inventorycube(chosen_tiles[1], chosen_tiles[2], chosen_tiles[3])
|
return img or mt_ext.texture_modifier_inventorycube(chosen_tiles[1], chosen_tiles[2], chosen_tiles[3])
|
||||||
|
end,
|
||||||
|
get_color_int=function(color)
|
||||||
|
return color.b + (color.g*256) + (color.r*256*256)
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -269,18 +272,6 @@ table_ext= {
|
|||||||
return dst
|
return dst
|
||||||
end,
|
end,
|
||||||
|
|
||||||
get_value = function(table, key)
|
|
||||||
if type(key) == "table" then
|
|
||||||
for k, v in pairs(table) do
|
|
||||||
if key==k then
|
|
||||||
return v
|
|
||||||
end
|
|
||||||
end
|
|
||||||
return nil
|
|
||||||
end
|
|
||||||
return table[key]
|
|
||||||
end,
|
|
||||||
|
|
||||||
keys = function(t)
|
keys = function(t)
|
||||||
local keys = {}
|
local keys = {}
|
||||||
for key, _ in pairs(t) do
|
for key, _ in pairs(t) do
|
||||||
@ -571,7 +562,7 @@ conf={
|
|||||||
return "Not inside range : Expected value >= "..constraints.range[1].." and <= "..constraints.range[1]..", found "..minetest.write_json(value)
|
return "Not inside range : Expected value >= "..constraints.range[1].." and <= "..constraints.range[1]..", found "..minetest.write_json(value)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
if constraints.possible_values and not table_ext.get_value(constraints.possible_values,value) then
|
if constraints.possible_values and not constraints.possible_values[value] then
|
||||||
return "None of the possible values : Expected one of "..minetest.write_json(table_ext.keys(constraints.possible_values))..", found "..minetest.write_json(value)
|
return "None of the possible values : Expected one of "..minetest.write_json(table_ext.keys(constraints.possible_values))..", found "..minetest.write_json(value)
|
||||||
end
|
end
|
||||||
if t == "table" then
|
if t == "table" then
|
||||||
|
Loading…
Reference in New Issue
Block a user