Skip to content

Commit 87a1625

Browse files
Merge pull request #2 from LeadKiller/master
Fixed RGB On Lights
2 parents 7d326ec + d690037 commit 87a1625

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)