Fix desert_sand_soil dropping itself, and changed the descriptions
authorAmaz <Amaz1@users.noreply.github.com>
Tue, 22 Jul 2014 10:31:47 +0000 (11:31 +0100)
committersfan5 <sfan5@live.de>
Tue, 22 Jul 2014 10:56:20 +0000 (12:56 +0200)
mods/farming/nodes.lua

index 4593e10e813674011cde31b92d983a688b4d999c..d8c1d2d230d4f24e5e905dd727e9efafe98d9a97 100644 (file)
@@ -53,7 +53,8 @@ minetest.override_item("default:desert_sand", {
        }
 })
 minetest.register_node("farming:desert_sand_soil", {
-       description = "Desert Sand",
+       description = "Desert Sand Soil",
+       drop = "default:desert_sand",
        tiles = {"farming_desert_sand_soil.png", "default_desert_sand.png"},
        is_ground_content = true,
        groups = {crumbly=3, not_in_creative_inventory = 1, falling_node=1, sand=1, soil = 2, desert = 1},
@@ -66,7 +67,7 @@ minetest.register_node("farming:desert_sand_soil", {
 })
 
 minetest.register_node("farming:desert_sand_soil_wet", {
-       description = "Desert Sand",
+       description = "Wet Desert Sand Soil",
        drop = "default:desert_sand",
        tiles = {"farming_desert_sand_soil_wet.png", "farming_desert_sand_soil_wet_side.png"},
        is_ground_content = true,