diff --git a/ghost_blocks/init.lua b/ghost_blocks/init.lua
index 973d415..aae3b40 100644
--- a/ghost_blocks/init.lua
+++ b/ghost_blocks/init.lua
@@ -74,6 +74,7 @@ function ghost_blocks.register_ghost_block(block)
block_data.description = "Ghost "..block_data.description
end
block_data.groups.ghost_block = 1
+ block_data.groups.not_in_creative_inventory = 1
block_data.groups.not_in_craft_guide = 1
block_data.drop = new_name
block_data._mcl_silk_touch_drop = {new_name}
@@ -252,9 +253,9 @@ minetest.register_node("ghost_blocks:ghostifier", {
minetest.register_craft({
output = "ghost_blocks:ghostifier",
recipe = {
- {"mcl_mobitems:ghast_tear", "mcl_mobitems:ghast_tear", "mcl_mobitems:ghast_tear"},
- {"mcl_mobitems:ghast_tear", "mcl_core:glass", "mcl_mobitems:ghast_tear"},
- {"mcl_mobitems:ghast_tear", "mcl_mobitems:ghast_tear", "mcl_mobitems:ghast_tear"}
+ {"mcl_core:glass", "mcl_core:glass", "mcl_core:glass"},
+ {"mcl_core:glass", "mcl_mobitems:ghast_tear", "mcl_core:glass"},
+ {"mcl_core:glass", "mcl_core:glass", "mcl_core:glass"}
}
})
diff --git a/readme.md b/readme.md
index 3e203bc..53ac967 100644
--- a/readme.md
+++ b/readme.md
@@ -19,7 +19,7 @@ A mod that adds solid water, river water, and lava blocks. They can be crafted b
A mod that adds a function that could potentially be used in other mods. It simply searches through every item and returns a table of each item that matches each group passed to it.
### Ghost Blocks
-A mod that creates Ghost Blocks, effectively normal blocks with no collision. They can be created using the "Ghostifier", which can be crafted by surrounding a glass block with ghast tears.
+A mod that creates Ghost Blocks, effectively normal blocks with no collision. They can be created using the "Ghostifier", which can be crafted by surrounding a ghast tear with glass blocks.
More details
@@ -69,9 +69,23 @@ Adds an item that can create any sound in the game (with a few buttons for prese
Adds glue and sticky blocks, which slow down players. Craft glue by combining a flower with water (a quick Google search said that one common recipe for glue was flour and water, and... pun). Craft sticky blocks mixing soul sand and ice.
### Useless Beans
-Beans... that are useless. They can be found in desert and mesa biomes. Annoy everyone by filling their inventories with useless beans! For added irritation, you can put one useless bean into a crafting table and get 64. Craft useless bean tools, smelt them into beangots (useless bean ingots), flood the world with useless bean liquid, and more!
+Beans... that are useless. They can be found in desert, mesa, and jungle biomes . Annoy everyone by filling their inventories with useless beans! For added irritation, you can put one useless bean into a crafting table and get 64. Craft useless bean tools, smelt them into beangots (useless bean ingots), flood the world with useless bean liquid, and more!
-
Well-hidden (?) secret:
-You can craft an elytra with meat blocks. Just put diamond blocks in the corners, a burnt steak block in the middle, a burnt fish/cod block on top, a burnt salmon block on the bottom, a burnt rabbit block on the left, and a burnt sausage block on the right. I just hope nobody chooses to read markdown files in a plain text editor, or this will be incredibly obvious.
+
+Well-hidden (?) secret:
+You can craft an elytra with meat blocks. Just put diamond blocks in the corners, a burnt steak block in the middle, a burnt fish/cod block on top, a burnt salmon block on the bottom, a burnt rabbit block on the left, and a burnt sausage block on the right. I just hope nobody chooses to read markdown files in a plain text editor, or this will be incredibly obvious.
+
+
+
+
+Screenshots
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/screenshots/Beanified Village.png b/screenshots/Beanified Village.png
new file mode 100644
index 0000000..8a20cb4
Binary files /dev/null and b/screenshots/Beanified Village.png differ
diff --git a/screenshots/Items.png b/screenshots/Items.png
new file mode 100644
index 0000000..5a9907d
Binary files /dev/null and b/screenshots/Items.png differ
diff --git a/screenshots/Sound Machine.png b/screenshots/Sound Machine.png
new file mode 100644
index 0000000..5dc7da1
Binary files /dev/null and b/screenshots/Sound Machine.png differ
diff --git a/screenshots/Sunflowers.png b/screenshots/Sunflowers.png
new file mode 100644
index 0000000..3351017
Binary files /dev/null and b/screenshots/Sunflowers.png differ
diff --git a/screenshots/Useless Bean Liquid.png b/screenshots/Useless Bean Liquid.png
new file mode 100644
index 0000000..9bf13e0
Binary files /dev/null and b/screenshots/Useless Bean Liquid.png differ
diff --git a/screenshots/Useless bean in the desert.png b/screenshots/Useless bean in the desert.png
new file mode 100644
index 0000000..d9e9b9d
Binary files /dev/null and b/screenshots/Useless bean in the desert.png differ
diff --git a/screenshots/Useless bean liquid in the nether.png b/screenshots/Useless bean liquid in the nether.png
new file mode 100644
index 0000000..2e86b7d
Binary files /dev/null and b/screenshots/Useless bean liquid in the nether.png differ
diff --git a/screenshots/Useless bean near beanified village.png b/screenshots/Useless bean near beanified village.png
new file mode 100644
index 0000000..347c385
Binary files /dev/null and b/screenshots/Useless bean near beanified village.png differ
diff --git a/screenshots/Uselessness of useless bean liquid.png b/screenshots/Uselessness of useless bean liquid.png
new file mode 100644
index 0000000..bf9fb0a
Binary files /dev/null and b/screenshots/Uselessness of useless bean liquid.png differ
diff --git a/screenshots/Zoomed Items.png b/screenshots/Zoomed Items.png
new file mode 100644
index 0000000..a68e44a
Binary files /dev/null and b/screenshots/Zoomed Items.png differ
diff --git a/useless_beans/init.lua b/useless_beans/init.lua
index a500658..028ea5c 100644
--- a/useless_beans/init.lua
+++ b/useless_beans/init.lua
@@ -13,7 +13,7 @@ minetest.register_node("useless_beans:useless_bean", {
minetest.register_decoration({
deco_type = "simple",
- place_on = {"group:sand"},
+ place_on = {"group:sand", "group:soil", "mcl_mud:mud"},
sidelen = 16,
noise_params = {
offset = 0.0,
@@ -35,6 +35,15 @@ minetest.register_decoration({
"MesaPlateauF_sandlevel",
"MesaPlateauFM",
"MesaPlateauFM_sandlevel",
+ "BambooJungleEdge",
+ "MangroveSwamp",
+ "Jungle",
+ "JungleEdge",
+ "BambooJungle",
+ "BambooJungleM",
+ "JungleEdgeM",
+ "JungleM",
+ "BambooJungleEdgeM"
},
decoration = "useless_beans:useless_bean",
height = 1,