Skip to content

Commit

Permalink
Add more time for next meteor event (#1493)
Browse files Browse the repository at this point in the history
* Add more time for next meteor event

* Add more time for meteor event
  • Loading branch information
Ady4ik authored Aug 4, 2024
1 parent 9dad355 commit 02e5ae4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Content.Shared/CCVar/CCVars.cs
Original file line number Diff line number Diff line change
Expand Up @@ -140,13 +140,13 @@ public static readonly CVarDef<float>
/// Minimum time between meteor swarms in minutes.
/// </summary>
public static readonly CVarDef<float>
MeteorSwarmMinTime = CVarDef.Create("events.meteor_swarm_min_time", 18.5f, CVar.ARCHIVE | CVar.SERVERONLY); //ss220 meteor fix
MeteorSwarmMinTime = CVarDef.Create("events.meteor_swarm_min_time", 25f, CVar.ARCHIVE | CVar.SERVERONLY); //ss220 meteor fix. 30.07.2024 by Ady4 added more time for next event

/// <summary>
/// Maximum time between meteor swarms in minutes.
/// </summary>
public static readonly CVarDef<float>
MeteorSwarmMaxTime = CVarDef.Create("events.meteor_swarm_max_time", 22.5f, CVar.ARCHIVE | CVar.SERVERONLY); //ss220 meteor fix
MeteorSwarmMaxTime = CVarDef.Create("events.meteor_swarm_max_time", 40f, CVar.ARCHIVE | CVar.SERVERONLY); //ss220 meteor fix. 30.07.2024 by Ady4 added more time for next event

/*
* Game
Expand Down

0 comments on commit 02e5ae4

Please sign in to comment.