From 34d35ea711d38a9f10533a113c0e5cbdf86919ee Mon Sep 17 00:00:00 2001 From: David Vogel Date: Tue, 24 Jul 2018 18:19:08 +0200 Subject: [PATCH] Rephrase point message at round end --- lua/autorun/server/pointsaving_mapstats.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/autorun/server/pointsaving_mapstats.lua b/lua/autorun/server/pointsaving_mapstats.lua index 62e9608..d9f4c3c 100644 --- a/lua/autorun/server/pointsaving_mapstats.lua +++ b/lua/autorun/server/pointsaving_mapstats.lua @@ -167,7 +167,7 @@ hook.Add("PostEndRound", "pointsave_givedapoints", function(winner) if pointsToGivePly > 0 then ply:PrintMessage(HUD_PRINTTALK, "In the end, you gained additional "..(pointsToGivePly).." points!") elseif pointsToGivePly < 0 then - ply:PrintMessage(HUD_PRINTTALK, "You lost "..(-pointsToGivePly).." points this round!") + ply:PrintMessage(HUD_PRINTTALK, ""..(-pointsToGivePly).." points will be retracted from you this round!") end end