added mineclone groups to all registered nodes. TODO: craftitems.

This was extremely tedious. Completely untested, aside from simply running the game.
This commit is contained in:
FaceDeer
2022-08-12 22:52:35 -06:00
parent ad723ac5ae
commit 1934e172a1
48 changed files with 226 additions and 203 deletions

View File

@ -61,7 +61,7 @@ minetest.register_node("oil:oil_source", {
liquid_alternative_source = "oil:oil_source",
liquid_viscosity = 1,
post_effect_color = {a = 250, r = 0, g = 0, b = 0},
groups = {liquid = 3, dig_by_piston=1},
groups = {liquid = 1, dig_by_piston=1},
sounds = oil_sounds,
_mcl_blast_resistance = 100,
_mcl_hardness = -1,
@ -113,7 +113,7 @@ minetest.register_node("oil:oil_flowing", {
liquid_alternative_source = "oil:oil_source",
liquid_viscosity = 1,
post_effect_color = {a = 250, r = 0, g = 0, b = 0},
groups = {liquid = 3, not_in_creative_inventory = 1, dig_by_piston=1},
groups = {liquid = 1, not_in_creative_inventory = 1, dig_by_piston=1},
sounds = oil_sounds,
_mcl_blast_resistance = 100,
_mcl_hardness = -1,