give revs briefing (#20749)

Co-authored-by: deltanedas <@deltanedas:kde.org>
This commit is contained in:
deltanedas
2023-10-05 16:05:09 +01:00
committed by GitHub
parent 14256dee03
commit a365568a7a
4 changed files with 42 additions and 11 deletions

View File

@@ -11,15 +11,6 @@ public sealed class RoleBriefingSystem : EntitySystem
private void OnGetBriefing(EntityUid uid, RoleBriefingComponent comp, ref GetBriefingEvent args)
{
if (args.Briefing == null)
{
// no previous briefing so just set it
args.Briefing = comp.Briefing;
}
else
{
// there is a previous briefing so append to it
args.Briefing += "\n" + comp.Briefing;
}
args.Append(comp.Briefing);
}
}