Skip to content

Commit 4cd6b66

Browse files
Lowered config value
1 parent 7cf6e46 commit 4cd6b66

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

SCP575/Config.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -252,10 +252,10 @@ public class Scp575Config
252252
/// <summary>
253253
/// This is complicated to explain, so I'll just tell you what I do in the code.
254254
/// If a player has a flashlight on and points it at SCP-575 I fire a ray of light that if it touches SCP-575 adds a point of light,
255-
/// when it reaches a certain point of light SCP-575 disappears. The coroutine that checks these points is executed every 0.1s.
255+
/// when it reaches a certain point of light SCP-575 disappears. The coroutine that checks these points is executed every 0.5s.
256256
/// </summary>
257-
[Description("This is complicated to explain, so I'll just tell you what I do in the code. If a player has a flashlight on and points it at SCP-575 I fire a ray of light that if it touches SCP-575 adds a point of light, when it reaches a certain point of light SCP-575 disappears. The coroutine that checks these points is executed every 0.1s.")]
258-
public int LightPoints { get; set; } = 30;
257+
[Description("This is complicated to explain, so I'll just tell you what I do in the code. If a player has a flashlight on and points it at SCP-575 I fire a ray of light that if it touches SCP-575 adds a point of light, when it reaches a certain point of light SCP-575 disappears. The coroutine that checks these points is executed every 0.5s.")]
258+
public int LightPoints { get; set; } = 20;
259259

260260
[Description("Whether to use the light points system above")]
261261
public bool UseLightPoints { get; set; } = true;

SCP575/EntryPoint.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public class EntryPoint : Plugin<Config>
1414
public override string Name => "SCP-575";
1515
public override string Description => "Add SCP-575 as an NPC that pursues players.";
1616
public override string Author => "SrLicht";
17-
public override Version Version => new(1, 0, 0);
17+
public override Version Version => new(1, 0, 1);
1818
public override Version RequiredApiVersion => LabApiProperties.CurrentVersion;
1919

2020
public static EntryPoint Instance { get; private set; }

0 commit comments

Comments
 (0)