mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-05-21 06:43:17 -04:00
Update init.lua
This commit is contained in:
parent
e3002ae56c
commit
347008fb6a
1 changed files with 5 additions and 5 deletions
|
@ -5,9 +5,9 @@ local floor_pos = function(pos)
|
||||||
return {x=math.floor(pos.x),y=math.floor(pos.y),z=math.floor(pos.z)}
|
return {x=math.floor(pos.x),y=math.floor(pos.y),z=math.floor(pos.z)}
|
||||||
end
|
end
|
||||||
|
|
||||||
local UFO_SPEED = 1
|
local UFO_SPEED = 2
|
||||||
local UFO_TURN_SPEED = 2
|
local UFO_TURN_SPEED = 4
|
||||||
local UFO_MAX_SPEED = 10
|
local UFO_MAX_SPEED = 20
|
||||||
local UFO_FUEL_USE = .01
|
local UFO_FUEL_USE = .01
|
||||||
|
|
||||||
ufos.fuel_from_wear = function(wear)
|
ufos.fuel_from_wear = function(wear)
|
||||||
|
@ -223,8 +223,8 @@ minetest.register_craft( {
|
||||||
output = 'ufos:ufo',
|
output = 'ufos:ufo',
|
||||||
recipe = {
|
recipe = {
|
||||||
{ "", "default:glass", ""},
|
{ "", "default:glass", ""},
|
||||||
{ "default:mese_crystal_fragment", "", "default:mese_crystal_fragment"},
|
{ "moontest:lunarium_lump", "", "moontest:lunarium_lump"},
|
||||||
{ "default:steelblock", "default:mese", "default:steelblock"},
|
{ "default:steelblock", "moontest:lunarium_lump", "default:steelblock"},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue