mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-05 18:10:26 +01:00
47bb65d79a
- Updated fonts and sign_lib - Did some remove_whitespaces
10 lines
267 B
Lua
Executable File
10 lines
267 B
Lua
Executable File
minetest.register_on_joinplayer(function(player)
|
|
inventory_plus.register_button(player, "quests")
|
|
end)
|
|
|
|
minetest.register_on_player_receive_fields(function(player, formname, fields)
|
|
if (fields.quests) then
|
|
quests.show_formspec(player:get_player_name())
|
|
end
|
|
end)
|