Add help msg when using map

This commit is contained in:
Wuzzy 2019-08-29 23:15:16 +02:00
parent 0d16f54b8d
commit 29e8be0825
3 changed files with 3 additions and 0 deletions

View File

@ -5,3 +5,4 @@ Navigator=Navigator
Craft a map=Fertigen Sie eine Karte
True Navigator=Wahrer Navigator
Craft a compass=Fertigen Sie einen Kompass
Use the minimap key to show the map.=Taste „Karte an/aus“ benutzen, um die Karte zu betrachten.

View File

@ -5,3 +5,4 @@ Navigator=
Craft a map=
True Navigator=
Craft a compass=
Use the minimap key to show the map.=

View File

@ -79,6 +79,7 @@ minetest.register_craftitem(
wield_image = "nav_inventory.png",
stack_max = 1,
on_use = function(itemstack, user, pointed_thing)
minetest.chat_send_player(user:get_player_name(), S("Use the minimap key to show the map."))
nav.map.update_hud_flags(user)
end,
})