mirror of
https://gitlab.com/rubenwardy/awards.git
synced 2024-11-10 20:50:18 +01:00
24 lines
687 B
Lua
24 lines
687 B
Lua
|
if minetest.get_modpath("sfinv") then
|
||
|
sfinv.register_page("awards:awards", {
|
||
|
title = "Awards",
|
||
|
on_enter = function(self, player, context)
|
||
|
context.awards_idx = 1
|
||
|
end,
|
||
|
get = function(self, player, context)
|
||
|
local name = player:get_player_name()
|
||
|
return sfinv.make_formspec(player, context,
|
||
|
awards.getFormspec(name, name, context.awards_idx or 1),
|
||
|
false, "size[11,5]")
|
||
|
end,
|
||
|
on_player_receive_fields = function(self, player, context, fields)
|
||
|
if fields.awards then
|
||
|
local event = minetest.explode_textlist_event(fields.awards)
|
||
|
if event.type == "CHG" then
|
||
|
context.awards_idx = event.index
|
||
|
sfinv.set(player, context)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
})
|
||
|
end
|