Compare commits

...

2 Commits

Author SHA1 Message Date
Pascal Abresch 8c9ff4ce71 moved charger to new formspec 2018-09-30 00:57:59 +02:00
Pascal Abresch 6d7a2c9c10 moved burnergenerator to new formspec 2018-09-30 00:55:02 +02:00
4 changed files with 6 additions and 14 deletions

View File

@ -4,13 +4,8 @@ local interval = 0.5
local NAME = minetest.get_current_modname()
local formspec =
"size[8,5.5]"..
"list[current_name;fuel;0,0;1,1;]"..
"list[current_player;main;0,1.5;8,3;8]" ..
"list[current_player;main;0,4.7;8,1;]"..
"bgcolor[#FC05E344;false]" ..
"listcolors[#fc059db0;#fc059dd0]"
local formspec = sparktech.add_inventory(8,1.2,
"list[current_name;fuel;0,0;1,1;]")
local function is_fuel(items)
local fuel

View File

@ -0,0 +1 @@
sparkinventory

View File

@ -1,12 +1,7 @@
local NAME = minetest.get_current_modname()
local formspec =
"size[8,5.5]"..
"list[current_name;charge;0,0;1,1;]" ..
"list[current_player;main;0,1.5;8,3;8]" ..
"list[current_player;main;0,4.7;8,1;]"..
"bgcolor[#FC05E344;false]" ..
"listcolors[#fc059db0;#fc059dd0]"
local formspec = sparktech.add_inventory(8,1.2,
"list[current_name;charge;0,0;1,1;]")
local SPEED = 10

View File

@ -1 +1,2 @@
sparkcore
sparkinventory