mirror of
https://bitbucket.org/kingarthursteam/cannons.git
synced 2025-01-10 13:27:29 +01:00
formspec style like default, if aviable
This commit is contained in:
parent
ebdbb4146a
commit
1782d1332e
@ -114,12 +114,35 @@ cannons.formspec =
|
|||||||
"list[current_name;muni;0,1;1,1;] label[0,0.5;Muni:]"..
|
"list[current_name;muni;0,1;1,1;] label[0,0.5;Muni:]"..
|
||||||
"list[current_name;gunpowder;0,3;1,1;] label[0,2.5;Gunpowder:]"..
|
"list[current_name;gunpowder;0,3;1,1;] label[0,2.5;Gunpowder:]"..
|
||||||
"list[current_player;main;0,5;8,4;]"
|
"list[current_player;main;0,5;8,4;]"
|
||||||
|
if default and default.gui_bg then
|
||||||
|
cannons.formspec = cannons.formspec..default.gui_bg;
|
||||||
|
end
|
||||||
|
|
||||||
|
if default and default.gui_bg_img then
|
||||||
|
cannons.formspec = cannons.formspec..default.gui_bg_img;
|
||||||
|
end
|
||||||
|
|
||||||
|
if default and default.gui_slots then
|
||||||
|
cannons.formspec = cannons.formspec..default.gui_slots;
|
||||||
|
end
|
||||||
|
|
||||||
cannons.disabled_formspec =
|
cannons.disabled_formspec =
|
||||||
"size[8,9]"..
|
"size[8,9]"..
|
||||||
"label[1,0.5;Cannon is Disabled. Place it on a cannonstand to activate it]"..
|
"label[1,0.5;Cannon is Disabled. Place it on a cannonstand to activate it]"..
|
||||||
"list[current_player;main;0,5;8,4;]"
|
"list[current_player;main;0,5;8,4;]"
|
||||||
|
|
||||||
|
if default and default.gui_bg then
|
||||||
|
cannons.disabled_formspec = cannons.disabled_formspec..default.gui_bg;
|
||||||
|
end
|
||||||
|
|
||||||
|
if default and default.gui_bg_img then
|
||||||
|
cannons.disabled_formspec = cannons.disabled_formspec..default.gui_bg_img;
|
||||||
|
end
|
||||||
|
|
||||||
|
if default and default.gui_slots then
|
||||||
|
cannons.disabled_formspec = cannons.disabled_formspec..default.gui_slots;
|
||||||
|
end
|
||||||
|
|
||||||
cannons.on_construct = function(pos)
|
cannons.on_construct = function(pos)
|
||||||
local node = minetest.get_node({x = pos.x ,y = pos.y-1, z = pos.z})
|
local node = minetest.get_node({x = pos.x ,y = pos.y-1, z = pos.z})
|
||||||
if minetest.registered_nodes[node.name].groups.cannonstand then
|
if minetest.registered_nodes[node.name].groups.cannonstand then
|
||||||
|
Loading…
Reference in New Issue
Block a user