mirror of
https://repo.or.cz/minetest_pep.git
synced 2025-03-16 21:01:23 +00:00
Change fast potion recipe
This commit is contained in:
parent
0df942ae75
commit
cd1c6d1c2d
1 changed files with 5 additions and 5 deletions
10
init.lua
10
init.lua
|
@ -164,17 +164,17 @@ if(minetest.get_modpath("default") ~= nil) then
|
||||||
output = "pep:speedminus",
|
output = "pep:speedminus",
|
||||||
recipe = { "default:dry_shrub", "pep:water" }
|
recipe = { "default:dry_shrub", "pep:water" }
|
||||||
})
|
})
|
||||||
minetest.register_craft({
|
|
||||||
type = "shapeless",
|
|
||||||
output = "pep:speedplus",
|
|
||||||
recipe = { "default:obsidian_shard", "pep:water" }
|
|
||||||
})
|
|
||||||
if(minetest.get_modpath("flowers") ~= nil) then
|
if(minetest.get_modpath("flowers") ~= nil) then
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = "pep:jumpplus",
|
output = "pep:jumpplus",
|
||||||
recipe = { "flowers:flower_geranium", "default:grass_1", "pep:water" }
|
recipe = { "flowers:flower_geranium", "default:grass_1", "pep:water" }
|
||||||
})
|
})
|
||||||
|
minetest.register_craft({
|
||||||
|
type = "shapeless",
|
||||||
|
output = "pep:speedplus",
|
||||||
|
recipe = { "flowers:rose", "flowers:dandelion_yellow", "pep:water" }
|
||||||
|
})
|
||||||
end
|
end
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
|
|
Loading…
Add table
Reference in a new issue