Skip to content

Commit 1ec31d8

Browse files
committedFeb 25, 2017
Torches: Reduce light source level from 13 to 12
As part of the original plan for a new lightcurve. With the old lightcurve lights were so dim all light sources had light source level 13 or 14 to compensate, resulting in almost no difference between torchlight and a maximum brightness light. The new lightcurve makes all light sources effectively much brighter by spreading visually-bright light further, torches are now slightly too bright. So now we can reduce the light source level of torches while actually making them effectively brighter than with the old lightcurve. This also creates a desirable difference between torchlight and a maximum-brightness light source.
1 parent 60e5b29 commit 1ec31d8

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed
 

Diff for: ‎mods/default/torch.lua

+3-4
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ minetest.register_node("default:torch", {
5050
sunlight_propagates = true,
5151
walkable = false,
5252
liquids_pointable = false,
53-
light_source = 13,
53+
light_source = 12,
5454
groups = {choppy=2, dig_immediate=3, flammable=1, attached_node=1, torch=1},
5555
drop = "default:torch",
5656
selection_box = {
@@ -97,7 +97,7 @@ minetest.register_node("default:torch_wall", {
9797
paramtype2 = "wallmounted",
9898
sunlight_propagates = true,
9999
walkable = false,
100-
light_source = 13,
100+
light_source = 12,
101101
groups = {choppy=2, dig_immediate=3, flammable=1, not_in_creative_inventory=1, attached_node=1, torch=1},
102102
drop = "default:torch",
103103
selection_box = {
@@ -118,7 +118,7 @@ minetest.register_node("default:torch_ceiling", {
118118
paramtype2 = "wallmounted",
119119
sunlight_propagates = true,
120120
walkable = false,
121-
light_source = 13,
121+
light_source = 12,
122122
groups = {choppy=2, dig_immediate=3, flammable=1, not_in_creative_inventory=1, attached_node=1, torch=1},
123123
drop = "default:torch",
124124
selection_box = {
@@ -144,4 +144,3 @@ minetest.register_lbm({
144144
end
145145
end
146146
})
147-

0 commit comments

Comments
 (0)
Please sign in to comment.