forked from VoxeLibre/VoxeLibre
Make showing advancement chat messages into a setting (#4032)
Reviewed-on: MineClone2/MineClone2#4032 Reviewed-by: the-real-herowl <the-real-herowl@noreply.git.minetest.land> Co-authored-by: Eliy21 <eliy21@noreply.git.minetest.land> Co-committed-by: Eliy21 <eliy21@noreply.git.minetest.land>
This commit is contained in:
parent
cd40861b3b
commit
b57f6be81d
|
@ -217,7 +217,9 @@ function awards.unlock(name, award)
|
||||||
|
|
||||||
-- Get award
|
-- Get award
|
||||||
minetest.log("action", name.." has gotten award "..award)
|
minetest.log("action", name.." has gotten award "..award)
|
||||||
|
if minetest.settings:get_bool("mcl_showAdvancementMessages", true) then
|
||||||
minetest.chat_send_all(S("@1 has made the advancement @2", name, minetest.colorize(mcl_colors.GREEN, "[" .. (awdef.title or award) .. "]")))
|
minetest.chat_send_all(S("@1 has made the advancement @2", name, minetest.colorize(mcl_colors.GREEN, "[" .. (awdef.title or award) .. "]")))
|
||||||
|
end
|
||||||
data.unlocked[award] = award
|
data.unlocked[award] = award
|
||||||
awards.save()
|
awards.save()
|
||||||
|
|
||||||
|
|
|
@ -73,6 +73,9 @@ mcl_elytra_rocket_speed (Elytra rocket speed cap) float 3.5 2.0 5.5
|
||||||
# If enabled, chat messages are shown to everyone when a player dies.
|
# If enabled, chat messages are shown to everyone when a player dies.
|
||||||
mcl_showDeathMessages (Show death messages) bool true
|
mcl_showDeathMessages (Show death messages) bool true
|
||||||
|
|
||||||
|
# If enabled, chat messages are shown to everyone when a player makes an advancement.
|
||||||
|
mcl_showAdvancementMessages (Show advancement messages) bool true
|
||||||
|
|
||||||
# If enabled, the recipe book will progressively be filled with new recipes that can be crafted from all items you ever have had in your inventory.
|
# If enabled, the recipe book will progressively be filled with new recipes that can be crafted from all items you ever have had in your inventory.
|
||||||
# Recommended for new players and for a spoiler-free gameplay experience.
|
# Recommended for new players and for a spoiler-free gameplay experience.
|
||||||
# If disabled, all recipes will be shown.
|
# If disabled, all recipes will be shown.
|
||||||
|
|
Loading…
Reference in New Issue