mirror of
https://github.com/minetest-mods/moreblocks.git
synced 2024-11-13 05:50:18 +01:00
Make compressed nodes compatible with compression_api
(#196)
This commit is contained in:
parent
d70ac4b289
commit
ee42eeee8d
|
@ -165,19 +165,19 @@ local nodes = {
|
|||
},
|
||||
["dirt_compressed"] = {
|
||||
description = S("Compressed Dirt"),
|
||||
groups = {crumbly=2},
|
||||
groups = {crumbly=2, compressed = 1},
|
||||
is_ground_content = false,
|
||||
sounds = sound_dirt,
|
||||
},
|
||||
["cobble_compressed"] = {
|
||||
description = S("Compressed Cobblestone"),
|
||||
groups = {cracky = 1},
|
||||
groups = {cracky = 1, compressed = 1},
|
||||
is_ground_content = false,
|
||||
sounds = sound_stone,
|
||||
},
|
||||
["desert_cobble_compressed"] = {
|
||||
description = S("Compressed Desert Cobblestone"),
|
||||
groups = {cracky = 1},
|
||||
groups = {cracky = 1, compressed = 1},
|
||||
is_ground_content = false,
|
||||
sounds = sound_stone,
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue
Block a user