Skip to content

Commit

Permalink
Removed DNA/Prints from the warrant
Browse files Browse the repository at this point in the history
  • Loading branch information
Kr8art committed Nov 26, 2024
1 parent 5ed4d5e commit bdec1c6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public sealed partial class RoundstartFugitiveRuleComponent : Component
/// How long to wait after the antag spawns before announcing it.
/// </summary>
[DataField]
public TimeSpan AnnounceDelay = TimeSpan.FromSeconds(5); //Should be FromMinutes(5) - changed for resting only!
public TimeSpan AnnounceDelay = TimeSpan.FromSeconds(5); //Should be FromMinutes(5) - changed for testing only!

/// <summary>
/// Station to give the report to.
Expand Down
12 changes: 6 additions & 6 deletions Content.Server/GameTicking/Rules/RoundstartFugitiveRuleSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -182,12 +182,12 @@ private FormattedMessage GenerateReport(EntityUid uid, RoundstartFugitiveRuleCom
if (TryComp<PhysicsComponent>(uid, out var physics))
report.PushMarkup(Loc.GetString("fugitive-report-weight", ("weight", Math.Round(physics.FixturesMass))));

// add a random identifying quality that officers can use to track them down
report.PushMarkup(RobustRandom.Next(0, 2) switch
{
0 => Loc.GetString("fugitive-report-detail-dna", ("dna", GetDNA(uid))),
_ => Loc.GetString("fugitive-report-detail-prints", ("prints", GetPrints(uid)))
});
// add a random identifying quality that officers can use to track them down - DISABLED
//report.PushMarkup(RobustRandom.Next(0, 2) switch
//{
// 0 => Loc.GetString("fugitive-report-detail-dna", ("dna", GetDNA(uid))),
// _ => Loc.GetString("fugitive-report-detail-prints", ("prints", GetPrints(uid)))
//});

report.PushNewline();
report.PushMarkup(Loc.GetString("fugitive-report-crimes-header"));
Expand Down

0 comments on commit bdec1c6

Please sign in to comment.