We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68e0977 commit 3a86f62Copy full SHA for 3a86f62
1 file changed
Content.Server/CrewAssignments/Systems/JobNetSystem.cs
@@ -737,13 +737,13 @@ public override void Update(float frameTime)
737
{
738
var words = _codeword.GenerateCodewords("PersistenceCodewordGenerator");
739
comp.SecretPhrase = string.Join(" ", words);
740
- comp.PrecursorResetTime = TimeSpan.FromMinutes(30);
+ comp.PrecursorResetTime = TimeSpan.FromMinutes(45);
741
TryAssignPrecursorObjective(uid, comp);
742
}
743
comp.RogueNetResetTime -= TimeSpan.FromSeconds(frameTime);
744
if (comp.NetworkType != RogueNetworkType.None && comp.RogueNetResetTime <= TimeSpan.Zero)
745
746
- comp.RogueNetResetTime = TimeSpan.FromMinutes(120);
+ comp.RogueNetResetTime = TimeSpan.FromMinutes(180);
747
TryAssignRogueObjective(uid, comp);
748
749
0 commit comments