forked from VoxeLibre/VoxeLibre
v0.12.1: Fix furnace background texture bug
This commit is contained in:
parent
77639e2910
commit
4442e9ac57
|
@ -2,7 +2,7 @@
|
||||||
An unofficial Minecraft-like game for Minetest. Forked from MineClone by daredevils.
|
An unofficial Minecraft-like game for Minetest. Forked from MineClone by daredevils.
|
||||||
Developed by Wuzzy and contributors. Not developed or endorsed by Mojang AB.
|
Developed by Wuzzy and contributors. Not developed or endorsed by Mojang AB.
|
||||||
|
|
||||||
Version: 0.12.0
|
Version: 0.12.1
|
||||||
|
|
||||||
### Gameplay
|
### Gameplay
|
||||||
You start in a randomly-generated world made entirely of cubes. You can explore
|
You start in a randomly-generated world made entirely of cubes. You can explore
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
local function active_formspec(fuel_percent, item_percent)
|
local function active_formspec(fuel_percent, item_percent)
|
||||||
return "size[9,8.75]"..
|
return "size[9,8.75]"..
|
||||||
"background[-0.19,-0.25;9.41,9.49;mcl_furnaces_formspec.png]"..
|
"background[-0.19,-0.25;9.41,9.49;crafting_inventory_furnace.png]"..
|
||||||
mcl_vars.inventory_header..
|
mcl_vars.inventory_header..
|
||||||
"list[current_player;main;0,4.5;9,3;9]"..
|
"list[current_player;main;0,4.5;9,3;9]"..
|
||||||
"list[current_player;main;0,7.74;9,1;]"..
|
"list[current_player;main;0,7.74;9,1;]"..
|
||||||
|
@ -27,7 +27,7 @@ local function active_formspec(fuel_percent, item_percent)
|
||||||
end
|
end
|
||||||
|
|
||||||
local inactive_formspec = "size[9,8.75]"..
|
local inactive_formspec = "size[9,8.75]"..
|
||||||
"background[-0.19,-0.25;9.41,9.49;mcl_furnaces_formspec.png]"..
|
"background[-0.19,-0.25;9.41,9.49;crafting_inventory_furnace.png]"..
|
||||||
mcl_vars.inventory_header..
|
mcl_vars.inventory_header..
|
||||||
"list[current_player;main;0,4.5;9,3;9]"..
|
"list[current_player;main;0,4.5;9,3;9]"..
|
||||||
"list[current_player;main;0,7.74;9,1;]"..
|
"list[current_player;main;0,7.74;9,1;]"..
|
||||||
|
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 2.7 KiB |
Loading…
Reference in New Issue