Rephrase point message at round end

This commit is contained in:
David Vogel 2018-07-24 18:19:08 +02:00
parent 01f917091d
commit 34d35ea711

View File

@ -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