diff options
author | tenplus1 <kinsellaja@yahoo.com> | 2015-05-20 16:57:17 +0100 |
---|---|---|
committer | tenplus1 <kinsellaja@yahoo.com> | 2015-05-20 16:57:17 +0100 |
commit | f438eadeb98c75252fe550ac2366b06db5022406 (patch) | |
tree | dc93fe7758bf55f4f87f69a47cc4c07efed5400d /crystal.lua | |
parent | 57240fe6f540164860b08d0afa6b8d5621d8ceda (diff) |
Fixed light_max, added scorched wood recipe
Diffstat (limited to 'crystal.lua')
-rw-r--r-- | crystal.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crystal.lua b/crystal.lua index de704f6..d7ad9b8 100644 --- a/crystal.lua +++ b/crystal.lua @@ -6,7 +6,7 @@ minetest.register_node("ethereal:crystal_spike", { inventory_image = "crystal_spike.png", wield_image = "crystal_spike.png", paramtype = "light", - light_source = LIGHT_MAX - 7, + light_source = default.LIGHT_MAX - 7, walkable = false, damage_per_second = 1, groups = {cracky=1,falling_node=1,puts_out_fire=1}, @@ -36,7 +36,7 @@ minetest.register_craft({ minetest.register_node("ethereal:crystal_block", { description = "Crystal Block", tiles = {"crystal_block.png"}, - light_source = LIGHT_MAX - 5, + light_source = default.LIGHT_MAX - 5, groups = {cracky=1,level=2,puts_out_fire=1}, sounds = default.node_sound_glass_defaults(), }) |