From 4d59d763abac398e022f696dd1f803f16959f1be Mon Sep 17 00:00:00 2001 From: "-sniper- (minetest)" <47271658+JostP@users.noreply.github.com> Date: Thu, 8 Oct 2020 22:49:40 +0200 Subject: [PATCH] Give medic 2 points per bandage (#682) --- 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 f2f0f9d..ba2ee66 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 = 1 + local reward = 2 main.score = main.score + reward match.score = match.score + reward