Skip to content

Commit

Permalink
Fixed RGB On Lights
Browse files Browse the repository at this point in the history
  • Loading branch information
LeadKiller committed May 28, 2019
1 parent 7d326ec commit d690037
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified plugins/TF2Sandbox-SaveSystem.smx
Binary file not shown.
2 changes: 1 addition & 1 deletion scripting/TF2Sandbox-SaveSystem.sp
Original file line number Diff line number Diff line change
Expand Up @@ -1395,7 +1395,7 @@ bool LoadProps(int loader, char[] szLoadString)
int Obj_LightDynamic = CreateEntityByName("light_dynamic");

char szColor[32];
Format(szColor, sizeof(szColor), "255 255 255");
Format(szColor, sizeof(szColor), "%i %i %i", iRed, iGreen, iBlue);

SetVariantString("500");
AcceptEntityInput(Obj_LightDynamic, "distance", -1);
Expand Down

0 comments on commit d690037

Please sign in to comment.