Skip to content

Commit

Permalink
Swap default to null
Browse files Browse the repository at this point in the history
  • Loading branch information
BarryNorfolk committed Jan 15, 2025
1 parent 5908db3 commit d872710
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Content.Server/Cargo/Systems/CargoSystem.Bounty.cs
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ public bool TryRemoveBounty(Entity<StationCargoBountyDatabaseComponent?> 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);
Expand Down

0 comments on commit d872710

Please sign in to comment.