4 Commits

Author SHA1 Message Date
a8b8e59ca7 Merge remote-tracking branch 'upstream/master' 2022-01-22 20:07:38 +01:00
d4b5e9223c Change License 2021-12-22 16:55:43 +01:00
6879308ea3 Make the Readme TODO list easier understandable 2021-12-22 16:49:19 +01:00
2506909694 Fix fence registration 2021-11-01 14:05:11 +01:00
3 changed files with 27 additions and 13 deletions

View File

@ -1,6 +1,9 @@
------Mushrooms------
— glowshroom and lavashroom from bas080's plants mod (WTFPL)
— parasol mushroom from a mod called mushrooms (WTFPL)
— "45" mushrooms from r01922090's mush45 mod (WTFPL)
Sounds and textures
CC by 3.0
Code
MIT
rest also WTFPL
Some source information:
— glowshroom and lavashroom from bas080's plants mod (originally WTFPL)
— parasol mushroom from a mod called mushrooms (originally WTFPL)
— "45" mushrooms from r01922090's mush45 mod (originally WTFPL)

View File

@ -12,10 +12,14 @@ If you got ideas or found bugs, please tell them to me.
TODO:
* add more giant mushrooms
* finish supporting the mushrooms mod
* add lava suit
* use visual_scale → crop textures and change nodeboxes (maybe automatically)
* make the growingtool craftable
* mapgen: do not use fixed tree stuff
* add settingtypes.txt
* Mapgen: Do not use a fixed table of tree nodes; instead use a more flexible
way to remove trees.
* Add a settingtypes.txt
* Make the growingtool craftable
* Test if visual_scale is useful for the small mushroom nodes,
e.g. to make textures smaller or to use power-of-two sized textures.
Nodeboxes would need to be changed accordingly (maybe automatically).
* Add new features:
* Add more giant mushrooms
* Add more content from the mushrooms mod
* Add a lava suit

View File

@ -1041,7 +1041,14 @@ for _, ndata in ipairs({
if add_fence
and ndata.fence ~= false then
add_fence({fence_of = nodename})
add_fence(
nodename.."_fence",
{
material = nodename,
texture = textures[#textures],
groups = node_groups,
sounds = sounds,
})
end
end