Ready for the release

pull/3/head
NPXcoot 2017-02-02 00:03:22 +01:00
parent 7e58b71fe5
commit 28c481f0d6
47 changed files with 10 additions and 12 deletions

2
depends.txt Normal file
View File

@ -0,0 +1,2 @@
default

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -791,9 +791,6 @@ minetest.register_node("nsspf:mycena_chlorophos", {
tiles = {"mycena_chlorophos.png"}, tiles = {"mycena_chlorophos.png"},
groups = {snappy=3}, groups = {snappy=3},
on_use = minetest.item_eat(-2), on_use = minetest.item_eat(-2),
on_place = function(itemstack, placer, pointed_thing)
return
end,
selection_box = { selection_box = {
type = 'fixed', type = 'fixed',
fixed = {-0.2, -0.4, 0.2, 0.2, 0.4, 0.5}, -- Right, Bottom, Back, Left, Top, Front fixed = {-0.2, -0.4, 0.2, 0.2, 0.4, 0.5}, -- Right, Bottom, Back, Left, Top, Front
@ -836,8 +833,9 @@ minetest.register_node("nsspf:mycena_chlorophos_light", {
minetest.set_node(pos, {name="air"}) minetest.set_node(pos, {name="air"})
end, end,
tiles = {"mycena_chlorophos_light.png"}, tiles = {"mycena_chlorophos_light.png"},
groups = {snappy=3}, groups = {snappy=3, not_in_creative_inventory=1},
light_source = 8, light_source = 8,
drop ="nsspf:mycena_chlorophos",
on_use = minetest.item_eat(-2), on_use = minetest.item_eat(-2),
on_place = function(itemstack, placer, pointed_thing) on_place = function(itemstack, placer, pointed_thing)
return return
@ -864,9 +862,6 @@ minetest.register_node("nsspf:panellus_pusillus", {
tiles = {"panellus_pusillus.png"}, tiles = {"panellus_pusillus.png"},
groups = {snappy=3}, groups = {snappy=3},
on_use = minetest.item_eat(-2), on_use = minetest.item_eat(-2),
on_place = function(itemstack, placer, pointed_thing)
return
end,
selection_box = { selection_box = {
type = 'fixed', type = 'fixed',
fixed = {-0.2, -0.4, 0.2, 0.2, 0.4, 0.5}, -- Right, Bottom, Back, Left, Top, Front fixed = {-0.2, -0.4, 0.2, 0.2, 0.4, 0.5}, -- Right, Bottom, Back, Left, Top, Front
@ -909,8 +904,9 @@ minetest.register_node("nsspf:panellus_pusillus_light", {
end, end,
paramtype2 = 'facedir', paramtype2 = 'facedir',
tiles = {"panellus_pusillus_light.png"}, tiles = {"panellus_pusillus_light.png"},
groups = {snappy=3}, groups = {snappy=3, not_in_creative_inventory=1},
light_source = 8, light_source = 8,
drop = "nsspf:panellus_pusillus",
on_use = minetest.item_eat(-2), on_use = minetest.item_eat(-2),
on_place = function(itemstack, placer, pointed_thing) on_place = function(itemstack, placer, pointed_thing)
return return
@ -1684,7 +1680,7 @@ nsspf_register_recipes ('clitocybula_azurea')
}) })
minetest.register_craftitem("nsspf:amadou", { minetest.register_craftitem("nsspf:amadou", {
description = descr, description = "Amadou",
image = "amadou.png", image = "amadou.png",
}) })
@ -1718,7 +1714,7 @@ end
if minetest.get_modpath("tnt") then if minetest.get_modpath("tnt") then
minetest.register_craftitem("nsspf:lasting_amadou", { minetest.register_craftitem("nsspf:lasting_amadou", {
description = 'Lasting amadou', description = 'Lasting Amadou',
image = "lasting_amadou.png", image = "lasting_amadou.png",
}) })

View File

@ -314,10 +314,10 @@ minetest.register_abm({
end end
nssbf_register_saprotrophicontrees ('armillaria_mellea', 'Armillaria mellea', 'default:tree', 16, 24) nssbf_register_saprotrophicontrees ('armillaria_mellea', 'Armillaria mellea', 'default:tree', 16, 24)
nssbf_register_saprotrophicontrees ('panellus_pusillus', 'Panellus pusillus', 'default:tree', 25, 52) nssbf_register_saprotrophicontrees ('panellus_pusillus', 'Panellus pusillus', 'default:tree', 23, 37)
nssbf_register_saprotrophicontrees ('fomes_fomentarius', 'Fomes fomentarius', 'default:aspen_tree', 13, 18) nssbf_register_saprotrophicontrees ('fomes_fomentarius', 'Fomes fomentarius', 'default:aspen_tree', 13, 18)
nssbf_register_saprotrophicontrees ('fistulina_hepatica', 'Fistulina hepatica', 'default:pine_tree', 16, 24) nssbf_register_saprotrophicontrees ('fistulina_hepatica', 'Fistulina hepatica', 'default:pine_tree', 16, 24)
nssbf_register_saprotrophicontrees ('mycena_chlorophos', 'Mycena clorophos', 'default:dirt', 30, 50) nssbf_register_saprotrophicontrees ('mycena_chlorophos', 'Mycena clorophos', 'default:dirt', 30, 43)
nssbf_register_saprotrophicontrees ('clitocybula_azurea', 'Clitocybula azurea', 'default:jungletree', 12, 28) nssbf_register_saprotrophicontrees ('clitocybula_azurea', 'Clitocybula azurea', 'default:jungletree', 12, 28)
nssbf_register_saprotrophicontrees ('ganoderma_lucidum', 'Ganoderma lucidum', 'default:jungletree', 14, 28) nssbf_register_saprotrophicontrees ('ganoderma_lucidum', 'Ganoderma lucidum', 'default:jungletree', 14, 28)