From d8727106d2a8df9fb49c069b2d62b1dbb9ed297e Mon Sep 17 00:00:00 2001 From: BarryNorfolk Date: Mon, 23 Dec 2024 13:29:16 +0100 Subject: [PATCH] Swap default to null --- Content.Server/Cargo/Systems/CargoSystem.Bounty.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Cargo/Systems/CargoSystem.Bounty.cs b/Content.Server/Cargo/Systems/CargoSystem.Bounty.cs index 2a287047047..7f74fe269d4 100644 --- a/Content.Server/Cargo/Systems/CargoSystem.Bounty.cs +++ b/Content.Server/Cargo/Systems/CargoSystem.Bounty.cs @@ -460,7 +460,7 @@ public bool TryRemoveBounty(Entity ent, { if (ent.Comp.Bounties[i].Id == data.Id) { - string? actorName = default; + string? actorName = null; if (actor != null) { var getIdentityEvent = new TryGetIdentityShortInfoEvent(ent.Owner, actor.Value);