We get awards, we don't unlock them

This commit is contained in:
Wuzzy 2020-03-31 22:33:07 +02:00
parent f7047c2bde
commit 526ac7b14a
2 changed files with 5 additions and 5 deletions

View File

@ -96,9 +96,9 @@ function awards.unlock(name, award)
if awards.show_mode == "chat" then
local chat_announce
if awdef.secret then
chat_announce = S("Secret award unlocked: %s")
chat_announce = S("Secret award gotten: %s")
else
chat_announce = S("Award unlocked: %s")
chat_announce = S("Award gotten: %s")
end
-- use the chat console to send it
minetest.chat_send_player(name, string.format(chat_announce, title))
@ -118,9 +118,9 @@ function awards.unlock(name, award)
})
local hud_announce
if awdef.secret then
hud_announce = S("Secret award unlocked!")
hud_announce = S("Secret award gotten!")
else
hud_announce = S("Award unlocked!")
hud_announce = S("Award gotten!")
end
local two = player:hud_add({
hud_elem_type = "text",

View File

@ -179,7 +179,7 @@ function awards.show_to(name, to, sid, text)
minetest.chat_send_player(to, S("Error: No award available."))
return
elseif not data or not data.unlocked then
minetest.chat_send_player(to, S("You have not unlocked any awards."))
minetest.chat_send_player(to, S("You have not gotten any awards."))
return
end
minetest.chat_send_player(to, string.format(S("%ss awards:"), name))