Skip to content

Commit

Permalink
Changed Config Description
Browse files Browse the repository at this point in the history
  • Loading branch information
SoraCent committed Aug 24, 2021
1 parent 3565eca commit 873e5b0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CustomWarheadColor/Config.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,13 @@ public sealed class Config : IConfig

[Description("Activate this if you want that the Light is getting of after Warhead detonation | Default = true")]
public bool EnableNoLightAfterDetonate { get; set; } = true;
[Description("Sets how long the Lights are off in Seconds")]
public float NoLightAfterDetonateDuration { get; set; } = 60f;

[Description("Activate this if you want Custom Lightcolor after the Warhead detonated | Default = false")]
public bool EnableCustomLightColorAfterDetonate { get; set; } = false;

[Description("Light Color R = Red, G = Green, B = Blue from 0-255 | Default 0,0,0 = Black")]
[Description("Light Color R = Red, G = Green, B = Blue from 0-255 | Default 0,0,0 = Black - looks like the light is off")]
public int WarheadColorAfterDetonationR { get; set; } = 0;
public int WarheadColorAfterDetonationG { get; set; } = 0;
public int WarheadColorAfterDetonationB { get; set; } = 0;
Expand Down

0 comments on commit 873e5b0

Please sign in to comment.