Skip to content

Commit

Permalink
make lights other than mese lights unable to grow food
Browse files Browse the repository at this point in the history
  • Loading branch information
Elkien3 committed Sep 7, 2020
1 parent 1fe9514 commit 1ab6ae3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion mods/army/light.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ minetest.register_node("army:light",{
description = "Bare Lightbulb",
drawtype = "nodebox",
sunlight_propagates = true,
light_source = 14,
light_source = 13,
tiles = {"army_bulbtop.png",
"army_bulbbase.png",
"army_bulbside.png"},
Expand Down
6 changes: 3 additions & 3 deletions mods/streets/streets_light/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ minetest.register_node(":streets:light_vertical_on", {
paramtype = "light",
paramtype2 = "facedir",
groups = {cracky = 1, streets_light = 1, not_in_creative_inventory = 1},
light_source = 14,
light_source = 13,
sunlight_propagates = true,
node_box = {
type = "fixed",
Expand Down Expand Up @@ -296,7 +296,7 @@ minetest.register_node(":streets:light_horizontal_on", {
paramtype = "light",
paramtype2 = "facedir",
groups = {cracky = 1, streets_light = 1, not_in_creative_inventory = 1},
light_source = 14,
light_source = 13,
sunlight_propagates = true,
node_box = {
type = "fixed",
Expand Down Expand Up @@ -341,7 +341,7 @@ minetest.register_node(":streets:light_hanging_on", {
paramtype = "light",
paramtype2 = "facedir",
groups = {cracky = 1, streets_light = 1, not_in_creative_inventory = 1},
light_source = 14,
light_source = 13,
sunlight_propagates = true,
node_box = {
type = "fixed",
Expand Down

0 comments on commit 1ab6ae3

Please sign in to comment.