Skip to content

Commit

Permalink
Merge pull request #2 from LeadKiller/master
Browse files Browse the repository at this point in the history
Fixed RGB On Lights
  • Loading branch information
BattlefieldDuck authored May 28, 2019
2 parents 7d326ec + d690037 commit 87a1625
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 87a1625

Please sign in to comment.