Skip to content

Commit 67fc224

Browse files
committedOct 5, 2016
Default: Add 'silver sand' for cold desert biome
1 parent c0de564 commit 67fc224

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed
 

Diff for: ‎mods/default/README.txt

+1
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ paramat (CC BY-SA 3.0):
111111
default_grass.png
112112
default_grass_side.png
113113
default_mese_block.png
114+
default_silver_sand.png
114115

115116
brunob.santos (CC BY-SA 4.0):
116117
default_desert_cobble.png

Diff for: ‎mods/default/nodes.lua

+8
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ default:dirt_with_snow
4747
4848
default:sand
4949
default:desert_sand
50+
default:silver_sand
5051
5152
default:gravel
5253
@@ -390,6 +391,13 @@ minetest.register_node("default:desert_sand", {
390391
sounds = default.node_sound_sand_defaults(),
391392
})
392393

394+
minetest.register_node("default:silver_sand", {
395+
description = "Silver Sand",
396+
tiles = {"default_silver_sand.png"},
397+
groups = {crumbly = 3, falling_node = 1, sand = 1},
398+
sounds = default.node_sound_sand_defaults(),
399+
})
400+
393401

394402
minetest.register_node("default:gravel", {
395403
description = "Gravel",

Diff for: ‎mods/default/textures/default_silver_sand.png

527 Bytes
Loading

0 commit comments

Comments
 (0)
Please sign in to comment.