Add achievements button
This commit is contained in:
parent
e840fcbe5e
commit
193193ec2b
5 changed files with 16 additions and 1 deletions
|
@ -200,3 +200,11 @@ awards.register_achievement("mcl:f_placeRails", {
|
|||
}
|
||||
})
|
||||
|
||||
|
||||
-- Show achievements formspec when the button was pressed
|
||||
minetest.register_on_player_receive_fields(function(player, formname, fields)
|
||||
if fields.__mcl_achievements then
|
||||
local name = player:get_player_name()
|
||||
awards.show_to(name, name, nil, false)
|
||||
end
|
||||
end)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue