diff --git a/mods/ctf_team_base/init.lua b/mods/ctf_team_base/init.lua index 80a48da..fbdb14b 100644 --- a/mods/ctf_team_base/init.lua +++ b/mods/ctf_team_base/init.lua @@ -48,7 +48,7 @@ local function get_is_player_pro(player) end local pstat = ctf_stats.player(player:get_player_name()) local kd = pstat.kills / max(pstat.deaths, 1) - return pstat.score > 2000 and kd > 2 + return pstat.score > 1000 and kd > 2 end local colors = {"red", "blue"} @@ -105,10 +105,10 @@ for _, chest_color in pairs(colors) do if is_pro then formspec = formspec .. "listring[current_name;pro]" .. - "label[5,-0.2;" .. minetest.formspec_escape("Pro players only (2k+ score, good KD)") .. "]" + "label[5,-0.2;" .. minetest.formspec_escape("Pro players only (1k+ score, good KD)") .. "]" else formspec = formspec .. "listring[current_name;pro]" .. - "label[5,-0.2;" .. minetest.formspec_escape("You need 2k+ score and good KD") .. "]" + "label[5,-0.2;" .. minetest.formspec_escape("You need 1k+ score and good KD") .. "]" end formspec = formspec .. diff --git a/mods/random_messages/init.lua b/mods/random_messages/init.lua index 1175aa0..5454f77 100644 --- a/mods/random_messages/init.lua +++ b/mods/random_messages/init.lua @@ -53,7 +53,7 @@ function random_messages.read_messages() "Gain more score by killing more than you die, or by capturing the flag.", "You gain more score the better the opponent you defeat.", "Players are immune for 10 seconds after they respawn.", - "Access the pro section of the chest by achieving a 2k+ score and killing 2 people for every death.", + "Access the pro section of the chest by achieving a 1k+ score and killing 2 people for every death.", "Use team doors (steel) to stop the enemy walking into your base.", "Sprint by pressing the fast key (E) when you have stamina.", "Like CTF? Give feedback using /report, and consider donating at rubenwardy.com/donate",