Skip to content

Commit

Permalink
corium source and chernobilyte blocks are not ground content
Browse files Browse the repository at this point in the history
  • Loading branch information
SwissalpS authored Feb 26, 2024
1 parent 5bb6363 commit 908a1a4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion technic/radiation.lua
Original file line number Diff line number Diff line change
Expand Up @@ -470,6 +470,7 @@ for _, state in pairs({"flowing", "source"}) do
liquid_renewable = false,
damage_per_second = 6,
post_effect_color = {a=192, r=80, g=160, b=80},
is_ground_content = state == "flowing",
groups = {
liquid = 2,
hot = 3,
Expand Down Expand Up @@ -507,7 +508,7 @@ end
minetest.register_node("technic:chernobylite_block", {
description = S("Chernobylite Block"),
tiles = {"technic_chernobylite_block.png"},
is_ground_content = true,
is_ground_content = false,
groups = {cracky=1, radioactive=4, level= has_mcl and 0 or 2, pickaxey=5},
_mcl_blast_resistance = 30,
_mcl_hardness = 40,
Expand Down

0 comments on commit 908a1a4

Please sign in to comment.