From 1883773d72e367027f7c715e5a2b449915d9d02f Mon Sep 17 00:00:00 2001 From: VegaZ Date: Sun, 4 Apr 2021 16:14:20 +0200 Subject: [PATCH] Fix Medic 6 --- ReallifeGamemode.Client/Interaction/factioninteraction.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ReallifeGamemode.Client/Interaction/factioninteraction.ts b/ReallifeGamemode.Client/Interaction/factioninteraction.ts index a497fc4c..79d5dcb4 100644 --- a/ReallifeGamemode.Client/Interaction/factioninteraction.ts +++ b/ReallifeGamemode.Client/Interaction/factioninteraction.ts @@ -535,7 +535,7 @@ export default function factionInteraction(globalData: IGlobalData) { } if (deadRespawned == false) { - mp.game.graphics.drawText(timeLeft.toString() + "s ", [0.5, 0.88], { + mp.game.graphics.drawText(timeLeft + "s ", [0.5, 0.88], { font: 7, color: [60, 179, 113, 255], scale: [0.3, 0.3], @@ -544,7 +544,7 @@ export default function factionInteraction(globalData: IGlobalData) { }); } else { { - mp.game.graphics.drawText(timeLeft.toString() + "s", [0.5, 0.88], { + mp.game.graphics.drawText(timeLeft + "s", [0.5, 0.88], { font: 7, color: [255, 203, 145, 255], scale: [0.3, 0.3],