Исправление в зависимостях рецепта
This commit is contained in:
parent
6905d2d6f0
commit
ff25cad5eb
12
craft.lua
12
craft.lua
@ -20,4 +20,16 @@ if minetest.get_modpath("technic") and minetest.get_modpath("space_travel") then
|
|||||||
output = 'default:gravel',
|
output = 'default:gravel',
|
||||||
recipe={{'space_travel:space_gravel'}}
|
recipe={{'space_travel:space_gravel'}}
|
||||||
})
|
})
|
||||||
|
end
|
||||||
|
|
||||||
|
--Исправление в зависимостях рецепта
|
||||||
|
if minetest.get_modpath("bunker") and minetest.get_modpath("technic") then
|
||||||
|
minetest.clear_craft({
|
||||||
|
output = "bunker:cement_powder"
|
||||||
|
})
|
||||||
|
|
||||||
|
technic.register_grinder_recipe({
|
||||||
|
input = {'default:clay_lump'},
|
||||||
|
output = {'bunker:cement_powder'}
|
||||||
|
})
|
||||||
end
|
end
|
4
init.lua
4
init.lua
@ -169,6 +169,10 @@ if minetest.get_modpath("rangedweapons") then
|
|||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
|
minetest.clear_craft({
|
||||||
|
output = "vehicles:missile_2_item"
|
||||||
|
})
|
||||||
|
|
||||||
default.cool_lava = function(pos, node)
|
default.cool_lava = function(pos, node)
|
||||||
if node.name == "default:lava_source" then
|
if node.name == "default:lava_source" then
|
||||||
minetest.set_node(pos, {name = "default:obsidian"})
|
minetest.set_node(pos, {name = "default:obsidian"})
|
||||||
|
@ -31,8 +31,9 @@ function surface_effect.display.main(player, power)
|
|||||||
bgimage,
|
bgimage,
|
||||||
"container[0,0]",
|
"container[0,0]",
|
||||||
"style_type[label;textcolor=green;bgcolor=red;font_size=20]",
|
"style_type[label;textcolor=green;bgcolor=red;font_size=20]",
|
||||||
"label[1.0,0.5;"..S("Software version: @1", minetest.colorize("#FF0000", version)).."]",
|
"label[1.0,0.2;"..S("Software version: @1", minetest.colorize("#FF0000", version)).."]",
|
||||||
"image[".. width - 2 ..",0.3;1.0,0.5;surface_effect_tablet_charge_level".. get_charge_indicator(power) .. ".png]",
|
"image[".. width - 3 ..",0;0.8,0.5;surface_effect_antena0.png]",
|
||||||
|
"image[".. width - 2 ..",0;1.0,0.5;surface_effect_tablet_charge_level".. get_charge_indicator(power) .. ".png]",
|
||||||
"container_end[]",
|
"container_end[]",
|
||||||
"image[1.0,1.0;0.7,0.7;surface_effect_thermometer.png]",
|
"image[1.0,1.0;0.7,0.7;surface_effect_thermometer.png]",
|
||||||
"label[1.5,1.0;"..math.floor(info_biome.heat).."]",
|
"label[1.5,1.0;"..math.floor(info_biome.heat).."]",
|
||||||
|
BIN
textures/surface_effect_antena0.png
Normal file
BIN
textures/surface_effect_antena0.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 687 B |
BIN
textures/surface_effect_antena1.png
Normal file
BIN
textures/surface_effect_antena1.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 687 B |
BIN
textures/surface_effect_antena2.png
Normal file
BIN
textures/surface_effect_antena2.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 685 B |
BIN
textures/surface_effect_antena3.png
Normal file
BIN
textures/surface_effect_antena3.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 685 B |
BIN
textures/surface_effect_antena_full.png
Normal file
BIN
textures/surface_effect_antena_full.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 672 B |
Loading…
x
Reference in New Issue
Block a user