diff --git a/mods/mesecons/mesecons_commandblock/init.lua b/mods/mesecons/mesecons_commandblock/init.lua index 8fd23f6a..6605b99c 100755 --- a/mods/mesecons/mesecons_commandblock/init.lua +++ b/mods/mesecons/mesecons_commandblock/init.lua @@ -45,7 +45,7 @@ minetest.register_chatcommand("hp", { local function initialize_data(meta) local commands = meta:get_string("commands") meta:set_string("formspec", - "invsize[9,5;]" .. + "size[9,5;]" .. "textarea[0.5,0.5;8.5,4;commands;Commands;"..commands.."]" .. "label[1,3.8;@nearest, @farthest, and @random are replaced by the respective player names]" .. "button_exit[3.3,4.5;2,1;submit;Submit]") diff --git a/mods/mesecons/mesecons_luacontroller/textures/jeija_luacontroller_LED_A.png b/mods/mesecons/mesecons_luacontroller/textures/jeija_luacontroller_LED_A.png index 7b6df4a8..78d05ef2 100755 Binary files a/mods/mesecons/mesecons_luacontroller/textures/jeija_luacontroller_LED_A.png and b/mods/mesecons/mesecons_luacontroller/textures/jeija_luacontroller_LED_A.png differ diff --git a/mods/mesecons/mesecons_luacontroller/textures/jeija_luacontroller_LED_B.png b/mods/mesecons/mesecons_luacontroller/textures/jeija_luacontroller_LED_B.png index ff8ebbfb..a4a1fe20 100755 Binary files a/mods/mesecons/mesecons_luacontroller/textures/jeija_luacontroller_LED_B.png and b/mods/mesecons/mesecons_luacontroller/textures/jeija_luacontroller_LED_B.png differ diff --git a/mods/mesecons/mesecons_luacontroller/textures/jeija_luacontroller_LED_C.png b/mods/mesecons/mesecons_luacontroller/textures/jeija_luacontroller_LED_C.png index d5eb9398..4dc57c24 100755 Binary files a/mods/mesecons/mesecons_luacontroller/textures/jeija_luacontroller_LED_C.png and b/mods/mesecons/mesecons_luacontroller/textures/jeija_luacontroller_LED_C.png differ diff --git a/mods/mesecons/mesecons_luacontroller/textures/jeija_luacontroller_LED_D.png b/mods/mesecons/mesecons_luacontroller/textures/jeija_luacontroller_LED_D.png index 9f33a61d..a67f36fd 100755 Binary files a/mods/mesecons/mesecons_luacontroller/textures/jeija_luacontroller_LED_D.png and b/mods/mesecons/mesecons_luacontroller/textures/jeija_luacontroller_LED_D.png differ diff --git a/mods/mesecons/mesecons_luacontroller/textures/jeija_luacontroller_burnt_top.png b/mods/mesecons/mesecons_luacontroller/textures/jeija_luacontroller_burnt_top.png index c5d2664b..7fa6c50b 100644 Binary files a/mods/mesecons/mesecons_luacontroller/textures/jeija_luacontroller_burnt_top.png and b/mods/mesecons/mesecons_luacontroller/textures/jeija_luacontroller_burnt_top.png differ diff --git a/mods/pipeworks/wielder.lua b/mods/pipeworks/wielder.lua index 3cb16491..d873d09b 100755 --- a/mods/pipeworks/wielder.lua +++ b/mods/pipeworks/wielder.lua @@ -10,7 +10,7 @@ end local function set_wielder_formspec(data, meta) meta:set_string("formspec", - "invsize[8,"..(6+data.wield_inv_height)..";]".. + "size[8,"..(6+data.wield_inv_height)..";]".. "item_image[0,0;1,1;"..data.name_base.."_off]".. "label[1,0;"..minetest.formspec_escape(data.description).."]".. "list[current_name;"..minetest.formspec_escape(data.wield_inv_name)..";"..((8-data.wield_inv_width)*0.5)..",1;"..data.wield_inv_width..","..data.wield_inv_height..";]"..