Remove the snow biome

master
PilzAdam 2013-07-28 00:19:18 +02:00
parent 9edf50b5fc
commit 50d6fd827f
2 changed files with 0 additions and 39 deletions

View File

@ -138,18 +138,6 @@ minetest.register_node("base:clay", {
},
})
minetest.register_node("base:snow", {
description = "Snow",
tiles = {"base_snow.png"},
stack_max = 20,
groups = {crumbly=3},
sounds = {
footstep = {name="base_footstep_snow", gain=0.5},
place = {name="base_place", gain=1.0},
dig = {name="base_dig_crumbly", gain=0.5},
},
})
minetest.register_node("base:copper", {
description = "Copper",
tiles = {"base_stone.png^base_copper.png"},

View File

@ -81,33 +81,6 @@ minetest.register_biome({
humidity_point = 0.0,
})
minetest.register_biome({
name = "base_snow",
node_top = "base:snow",
depth_top = 2,
node_filler = "base:dirt",
depth_filler = 2,
height_min = 1,
height_max = 100,
heat_point = 10.0,
humidity_point = 40.0,
})
minetest.register_biome({
name = "base_mountain_snow",
node_top = "base:snow",
depth_top = 2,
node_filler = "base:stone",
height_min = 101,
height_max = 30000,
heat_point = 0.0,
humidity_point = 40.0,
})
minetest.register_decoration({
deco_type = "schematic",
place_on = "base:dirt_with_grass",