@@ -947,7 +947,7 @@ minetest.register_node("default:junglegrass", {
947
947
sunlight_propagates = true ,
948
948
walkable = false ,
949
949
buildable_to = true ,
950
- groups = {snappy = 3 , flora = 1 , attached_node = 1 },
950
+ groups = {snappy = 3 , flora = 1 , attached_node = 1 , grass = 1 },
951
951
sounds = default .node_sound_leaves_defaults (),
952
952
selection_box = {
953
953
type = " fixed" ,
@@ -968,7 +968,7 @@ minetest.register_node("default:grass_1", {
968
968
sunlight_propagates = true ,
969
969
walkable = false ,
970
970
buildable_to = true ,
971
- groups = {snappy = 3 , flora = 1 , attached_node = 1 },
971
+ groups = {snappy = 3 , flora = 1 , attached_node = 1 , grass = 1 },
972
972
sounds = default .node_sound_leaves_defaults (),
973
973
selection_box = {
974
974
type = " fixed" ,
@@ -998,7 +998,7 @@ for i = 2, 5 do
998
998
buildable_to = true ,
999
999
drop = " default:grass_1" ,
1000
1000
groups = {snappy = 3 , flora = 1 , attached_node = 1 ,
1001
- not_in_creative_inventory = 1 },
1001
+ not_in_creative_inventory = 1 , grass = 1 },
1002
1002
sounds = default .node_sound_leaves_defaults (),
1003
1003
selection_box = {
1004
1004
type = " fixed" ,
@@ -1019,7 +1019,8 @@ minetest.register_node("default:dry_grass_1", {
1019
1019
sunlight_propagates = true ,
1020
1020
walkable = false ,
1021
1021
buildable_to = true ,
1022
- groups = {snappy = 3 , flammable = 3 , flora = 1 , attached_node = 1 },
1022
+ groups = {snappy = 3 , flammable = 3 , flora = 1 ,
1023
+ attached_node = 1 , dry_grass = 1 },
1023
1024
sounds = default .node_sound_leaves_defaults (),
1024
1025
selection_box = {
1025
1026
type = " fixed" ,
@@ -1047,8 +1048,8 @@ for i = 2, 5 do
1047
1048
sunlight_propagates = true ,
1048
1049
walkable = false ,
1049
1050
buildable_to = true ,
1050
- groups = {snappy = 3 , flammable = 3 , flora = 1 ,
1051
- attached_node = 1 , not_in_creative_inventory = 1 },
1051
+ groups = {snappy = 3 , flammable = 3 , flora = 1 , attached_node = 1 ,
1052
+ not_in_creative_inventory = 1 , dry_grass = 1 },
1052
1053
drop = " default:dry_grass_1" ,
1053
1054
sounds = default .node_sound_leaves_defaults (),
1054
1055
selection_box = {
0 commit comments