mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-10-28 20:28:21 +01:00
12 lines
365 B
Lua
12 lines
365 B
Lua
if minetest.get_modpath("unified_inventory") then
|
|
local S = minetest.get_translator(minetest.get_current_modname())
|
|
unified_inventory.register_button("awards", {
|
|
type = "image",
|
|
image = "awards_ui_icon.png",
|
|
tooltip = S("Awards"),
|
|
action = function(player)
|
|
local name = player:get_player_name()
|
|
awards.show_to(name, name, nil, false)
|
|
end,
|
|
})
|
|
end
|