Tweak light_source

master
PilzAdam 2013-05-29 15:55:32 +02:00
parent 12ea2489f2
commit 1c691c98da
4 changed files with 8 additions and 8 deletions

View File

@ -506,7 +506,7 @@ minetest.register_node("default:lava_flowing", {
},
},
paramtype = "light",
light_source = LIGHT_MAX - 1,
light_source = 15,
walkable = false,
pointable = false,
diggable = false,
@ -538,7 +538,7 @@ minetest.register_node("default:lava_source", {
}
},
paramtype = "light",
light_source = LIGHT_MAX - 1,
light_source = 15,
walkable = false,
pointable = false,
diggable = false,
@ -567,7 +567,7 @@ minetest.register_node("default:torch", {
paramtype2 = "wallmounted",
sunlight_propagates = true,
walkable = false,
light_source = LIGHT_MAX-1,
light_source = 14,
selection_box = {
type = "wallmounted",
wall_bottom = {-0.1, -0.5, -0.1, 0.1, -0.5+0.6, 0.1},
@ -951,7 +951,7 @@ minetest.register_node("default:furnace_active", {
tiles = {"default_furnace_top.png", "default_furnace_bottom.png", "default_furnace_side.png",
"default_furnace_side.png", "default_furnace_side.png", "default_furnace_front_active.png"},
paramtype2 = "facedir",
light_source = 8,
light_source = 13,
drop = "default:furnace",
groups = {cracky=default.dig.furnace, not_in_creative_inventory=1},
legacy_facedir_simple = true,

View File

@ -8,7 +8,7 @@ minetest.register_node("fire:basic_flame", {
animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=1},
}},
inventory_image = "fire_basic_flame.png",
light_source = 14,
light_source = 15,
groups = {igniter=2,dig_immediate=3},
drop = '',
walkable = false,

View File

@ -38,7 +38,7 @@ minetest.register_node("nether:portal", {
pointable = false,
buildable_to = false,
drop = "",
light_source = 5,
light_source = 11,
post_effect_color = {a=180, r=128, g=0, b=128},
alpha = 192,
node_box = {
@ -346,7 +346,7 @@ minetest.register_node("nether:glowstone", {
description = "Glowstone",
tiles = {"nether_glowstone.png"},
is_ground_content = true,
light_source = 13,
light_source = 15,
stack_max = 64,
drop = {
items = {

View File

@ -283,7 +283,7 @@ minetest.register_node("redstone:torch_on", {
paramtype = "light",
paramtype2 = "wallmounted",
walkable = false,
light_source = 10,
light_source = 7,
selection_box = {
type = "wallmounted",
wall_bottom = {-0.1, -0.5, -0.1, 0.1, -0.5+0.6, 0.1},