From 10585d0663f5f13295945788a786d06fa60f78bc Mon Sep 17 00:00:00 2001 From: ANAND Date: Sun, 31 May 2020 23:09:53 +0530 Subject: [PATCH] Nerf bandages heal reward to 1 score/use --- mods/ctf/ctf_classes/medic.lua | 2 +- update.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mods/ctf/ctf_classes/medic.lua b/mods/ctf/ctf_classes/medic.lua index b5f85b3..49132cb 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 then local main, match = ctf_stats.player(name) if main and match then - local reward = 5 + local reward = 1 main.score = main.score + reward match.score = match.score + reward diff --git a/update.sh b/update.sh index 2439579..0349337 100755 --- a/update.sh +++ b/update.sh @@ -12,7 +12,7 @@ git submodule update --init --recursive # Run build.sh ./build.sh ../games/capturetheflag -# Queue update +# Queue restart if [[ -d ../worlds/ctf ]]; then touch ../worlds/ctf/queue_restart.txt fi