Skip to content

Commit

Permalink
Make changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Misfiy committed Aug 2, 2024
1 parent aca9dfd commit dff21c7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion EXILED/Exiled.API/Features/Hazards/AmnesticCloudHazard.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public static Scp939AmnesticCloudInstance AmnesticCloudPrefab
public new Scp939AmnesticCloudInstance Base { get; }

/// <inheritdoc />
public override HazardType Type { get; } = HazardType.AmnesticCloud;
public override HazardType Type => HazardType.AmnesticCloud;

/// <summary>
/// Gets the <see cref="Scp939AmnesticCloudAbility"/> for this instance.
Expand Down
2 changes: 1 addition & 1 deletion EXILED/Exiled.API/Features/Hazards/SinkholeHazard.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ public SinkholeHazard(SinkholeEnvironmentalHazard hazard)
public new SinkholeEnvironmentalHazard Base { get; }

/// <inheritdoc />
public override HazardType Type { get; } = HazardType.Sinkhole;
public override HazardType Type => HazardType.Sinkhole;
}
}
2 changes: 1 addition & 1 deletion EXILED/Exiled.API/Features/Hazards/TantrumHazard.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public static TantrumEnvironmentalHazard TantrumPrefab
public new TantrumEnvironmentalHazard Base { get; }

/// <inheritdoc />
public override HazardType Type { get; } = HazardType.Tantrum;
public override HazardType Type => HazardType.Tantrum;

/// <summary>
/// Gets or sets a value indicating whether or not sizzle should be played.
Expand Down

0 comments on commit dff21c7

Please sign in to comment.