Skip to content

Commit

Permalink
Merge branch 'dev' into fix-transpiler
Browse files Browse the repository at this point in the history
  • Loading branch information
Misaka-ZeroTwo authored Nov 12, 2023
2 parents eb77a73 + 269a63c commit 7e29fe8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Exiled.API/Features/Map.cs
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ public static int Seed
/// <summary>
/// Gets the <see cref="global::AmbientSoundPlayer"/>.
/// </summary>
public static AmbientSoundPlayer AmbientSoundPlayer => ambientSoundPlayer != null ? ambientSoundPlayer : (ambientSoundPlayer = ReferenceHub.HostHub.GetComponent<AmbientSoundPlayer>());
public static AmbientSoundPlayer AmbientSoundPlayer => ambientSoundPlayer ??= ReferenceHub.HostHub.GetComponent<AmbientSoundPlayer>();

/// <summary>
/// Broadcasts a message to all <see cref="Player">players</see>.
Expand Down

0 comments on commit 7e29fe8

Please sign in to comment.