Skip to content

Commit d690037

Browse files
committed
Fixed RGB On Lights
1 parent 7d326ec commit d690037

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

plugins/TF2Sandbox-SaveSystem.smx

18 Bytes
Binary file not shown.

scripting/TF2Sandbox-SaveSystem.sp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1395,7 +1395,7 @@ bool LoadProps(int loader, char[] szLoadString)
13951395
int Obj_LightDynamic = CreateEntityByName("light_dynamic");
13961396

13971397
char szColor[32];
1398-
Format(szColor, sizeof(szColor), "255 255 255");
1398+
Format(szColor, sizeof(szColor), "%i %i %i", iRed, iGreen, iBlue);
13991399

14001400
SetVariantString("500");
14011401
AcceptEntityInput(Obj_LightDynamic, "distance", -1);

0 commit comments

Comments
 (0)