Fix Nametagcolor

This commit is contained in:
VegaZ
2021-04-04 03:00:01 +02:00
parent 12ceab5c03
commit 47eecc1822
3 changed files with 8 additions and 8 deletions

View File

@@ -108,12 +108,12 @@ namespace ReallifeGamemode.Server.Events
case 8:
player.SetSharedData("blipColor", 83);
player.SetSharedData("nameTagColor", new Color[171, 0, 207, 255]);
player.SetSharedData("nameTagColor", new int[]{171, 0, 207});
break;
case 7:
player.SetSharedData("blipColor", 52);
player.SetSharedData("nameTagColor", new Color[0, 54, 0, 255]);
player.SetSharedData("nameTagColor", new int[] { 0, 54, 0});
break;
case 4:
@@ -121,7 +121,7 @@ namespace ReallifeGamemode.Server.Events
break;
case 9:
player.SetSharedData("blipColor", 25);
player.SetSharedData("nameTagColor", new Color[0, 166, 133, 255]);
player.SetSharedData("nameTagColor", new int[] { 0, 166, 133});
break;
}