diff options
author | Auke Kok <sofar+github@foo-projects.org> | 2016-09-19 10:09:40 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-19 10:09:40 -0700 |
commit | ab2c63270f9289de717ccaf0aa21f0b871b7bc78 (patch) | |
tree | 8ebf9c800c8822b37a1512659c57c0705deb5a3a | |
parent | 15033a3514bec5c0858f498732318250028f335b (diff) | |
download | moreblocks-ab2c63270f9289de717ccaf0aa21f0b871b7bc78.tar.gz moreblocks-ab2c63270f9289de717ccaf0aa21f0b871b7bc78.tar.bz2 moreblocks-ab2c63270f9289de717ccaf0aa21f0b871b7bc78.zip |
Max light source is 14. (#56)
-rw-r--r-- | nodes.lua | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -284,7 +284,7 @@ local nodes = { tiles = {"moreblocks_super_glow_glass.png"}, paramtype = "light", sunlight_propagates = true, - light_source = 15, + light_source = 14, groups = {snappy = 2, cracky = 3, oddly_breakable_by_hand = 3}, sounds = sound_glass, }, @@ -295,7 +295,7 @@ local nodes = { tiles = {"moreblocks_trap_super_glow_glass.png"}, paramtype = "light", sunlight_propagates = true, - light_source = 15, + light_source = 14, walkable = false, groups = {snappy = 2, cracky = 3, oddly_breakable_by_hand = 3}, sounds = sound_glass, |