diff options
author | root <root@linuxworks.belug.de> | 2018-03-25 22:55:57 +0200 |
---|---|---|
committer | root <root@linuxworks.belug.de> | 2018-03-25 22:55:57 +0200 |
commit | f0f0d5bbd292ac3bbf0c9dd373bd4e4776827e34 (patch) | |
tree | e639f14ced6805459e8cd37da2babb162124c482 /crystal.lua | |
parent | 3f9008c613e09e812f6dca1a43441f9b25d907dc (diff) | |
parent | 2f904e9e885d3a381131fec8a8658aacde782281 (diff) |
Merge branch 'master' of https://github.com/tenplus1/ethereal
Diffstat (limited to 'crystal.lua')
-rw-r--r-- | crystal.lua | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/crystal.lua b/crystal.lua index 0af1296..fdbdd17 100644 --- a/crystal.lua +++ b/crystal.lua @@ -11,13 +11,17 @@ minetest.register_node("ethereal:crystal_spike", { paramtype = "light", light_source = 7, sunlight_propagates = true, - walkable = false, + walkable = true, damage_per_second = 1, groups = {cracky = 1, falling_node = 1, puts_out_fire = 1, cools_lava = 1}, sounds = default.node_sound_glass_defaults(), selection_box = { type = "fixed", - fixed = {-5 / 16, -0.5, -5 / 16, 5 / 16, 0.41, 5 / 16}, + fixed = {-5 / 16, -0.5, -5 / 16, 5 / 16, 0, 5 / 16}, + }, + node_box = { + type = "fixed", + fixed = {-5 / 16, -0.5, -5 / 16, 5 / 16, 0, 5 / 16}, }, }) |