From 82064fcd8dbad7c98e21735f15245bef3d50d63b Mon Sep 17 00:00:00 2001 From: "-sniper- (minetest)" <47271658+JostP@users.noreply.github.com> Date: Sun, 25 Oct 2020 19:27:02 +0100 Subject: [PATCH] Give medic 3 score per bandage use (#686) * Give medic 3 pts per bandage use --- mods/ctf/ctf_classes/medic.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/ctf/ctf_classes/medic.lua b/mods/ctf/ctf_classes/medic.lua index ba2ee66..1aa1aec 100644 --- a/mods/ctf/ctf_classes/medic.lua +++ b/mods/ctf/ctf_classes/medic.lua @@ -82,7 +82,7 @@ minetest.override_item("ctf_bandages:bandage", { if hp > 0 and hp < limit and ctf_classes.get(user).name == "medic" then local main, match = ctf_stats.player(name) if main and match then - local reward = 2 + local reward = 3 main.score = main.score + reward match.score = match.score + reward