Fixed mapgen, added ores

This commit is contained in:
cale 2016-01-06 18:13:29 +01:00
parent 222216a882
commit adb4fc33ac
7 changed files with 24 additions and 0 deletions

View File

@ -528,3 +528,15 @@ minetest.register_node("default:rail", {
walkable = false,
groups = {choppy = 1, attached_node = 1},
})
minetest.register_node("default:wire", {
description = "Wire",
drawtype = "raillike",
tiles = {"default_wire.png", "default_wire_curve.png",
"default_wire_t.png", "default_wire_cross.png"},
inventory_image = "default_wire.png",
wield_image = "default_wire.png",
paramtype = "light",
walkable = false,
groups = {choppy = 1, attached_node = 1},
})

View File

@ -528,3 +528,15 @@ minetest.register_node("default:rail", {
walkable = false,
groups = {choppy = 1, attached_node = 1},
})
minetest.register_node("default:wire", {
description = "Wire",
drawtype = "raillike",
tiles = {"default_wire.png", "default_wire_curve.png",
"default_wire_t.png", "default_wire_cross.png"},
inventory_image = "default_wire.png",
wield_image = "default_wire.png",
paramtype = "light",
walkable = false,
groups = {choppy = 1, attached_node = 1},
})

Binary file not shown.

Before

Width:  |  Height:  |  Size: 433 B

After

Width:  |  Height:  |  Size: 443 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 205 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 217 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 219 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 222 B