File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ minetest.register_craftitem("binoculars:binoculars", {
5353 description = S (" Binoculars" ) .. " \n " .. S (" Use with 'Zoom' key" ),
5454 inventory_image = " binoculars_binoculars.png" ,
5555 stack_max = 1 ,
56+ groups = {tool = 1 },
5657
5758 on_use = function (itemstack , user , pointed_thing )
5859 binoculars .update_player_property (user )
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ minetest.register_craftitem("map:mapping_kit", {
5151 description = S (" Mapping Kit" ) .. " \n " .. S (" Use with 'Minimap' key" ),
5252 inventory_image = " map_mapping_kit.png" ,
5353 stack_max = 1 ,
54- groups = {flammable = 3 },
54+ groups = {flammable = 3 , tool = 1 },
5555
5656 on_use = function (itemstack , user , pointed_thing )
5757 map .update_hud_flags (user )
You can’t perform that action at this time.
0 commit comments