From e14e23947e4c7cf0dd3cbbf4179d6f5f76c091ea Mon Sep 17 00:00:00 2001 From: VegaZ Date: Sun, 4 Apr 2021 03:28:38 +0200 Subject: [PATCH] Fix NT 5 --- ReallifeGamemode.Client/Gui/nametags.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReallifeGamemode.Client/Gui/nametags.ts b/ReallifeGamemode.Client/Gui/nametags.ts index 5094daf5..d23f9e12 100644 --- a/ReallifeGamemode.Client/Gui/nametags.ts +++ b/ReallifeGamemode.Client/Gui/nametags.ts @@ -12,7 +12,7 @@ export default function customNametags() { mp.events.addDataHandler("nameTagColor", (entity, value) => { if (entity.type === "player") { - entity.setVariable('nametagColor',value) + //entity.setVariable('nametagColor',value) mp.gui.chat.push(value); } });