Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Binoculars / Map mods: Clarify key-activation of items in descriptions
Map mod:
Tune cyclic update interval.
Re-add HUD flags update on item 'use'.
  • Loading branch information
paramat committed Oct 24, 2017
1 parent 3f14d10 commit 36df80f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion mods/binoculars/init.lua
Expand Up @@ -47,7 +47,7 @@ minetest.after(4.7, cyclic_update)
-- Binoculars item

minetest.register_craftitem("binoculars:binoculars", {
description = "Binoculars",
description = "Binoculars\nUse with 'Zoom' key",
inventory_image = "binoculars_binoculars.png",
stack_max = 1,

Expand Down
5 changes: 3 additions & 2 deletions mods/map/README.txt
Expand Up @@ -32,8 +32,9 @@ WPD
Usage
-----
In survival mode, use of the minimap requires the mapping kit item in your
inventory. It can take up to 3 seconds for adding to or removal from inventory
to have an effect.
inventory. It can take up to 5 seconds for adding to or removal from inventory
to have an effect, however to instantly allow the use of the minimap 'use'
(leftclick) the item.
Minimap radar mode is always disallowed in survival mode.

Minimap and minimap radar mode are automatically allowed in creative mode and
Expand Down
10 changes: 7 additions & 3 deletions mods/map/init.lua
Expand Up @@ -40,19 +40,23 @@ local function cyclic_update()
for _, player in ipairs(minetest.get_connected_players()) do
map.update_hud_flags(player)
end
minetest.after(3.1, cyclic_update)
minetest.after(5.3, cyclic_update)
end

minetest.after(3.1, cyclic_update)
minetest.after(5.3, cyclic_update)


-- Mapping kit item

minetest.register_craftitem("map:mapping_kit", {
description = "Mapping Kit",
description = "Mapping Kit\nUse with 'Minimap' key",
inventory_image = "map_mapping_kit.png",
stack_max = 1,
groups = {flammable = 3},

on_use = function(itemstack, user, pointed_thing)
map.update_hud_flags(user)
end,
})


Expand Down

0 comments on commit 36df80f

Please sign in to comment.