Skip to content

Commit

Permalink
Fix Naming
Browse files Browse the repository at this point in the history
  • Loading branch information
louis1706 committed Aug 1, 2024
1 parent c523af3 commit 608bbcd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions EXILED/Exiled.Events/EventArgs/Scp079/RecontainedEventArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ public class RecontainedEventArgs : IScp079Event
/// <inheritdoc cref="Player" />
/// </param>
/// <param name="scp079Recontainer">
/// <inheritdoc cref="Scp079Recontainer" />
/// <inheritdoc cref="Recontainer" />
/// </param>
public RecontainedEventArgs(Player player, PlayerRoles.PlayableScps.Scp079.Scp079Recontainer scp079Recontainer)
{
Player = player;
Scp079 = player.Role.As<Scp079Role>();
Scp079Recontainer = scp079Recontainer;
PlayerWhoRecontainedScp079DoNotKeepThisNAmeOKAYYYY = Player.Get(scp079Recontainer._activatorGlass.LastAttacker);
Recontainer = scp079Recontainer;
Attacker = Player.Get(scp079Recontainer._activatorGlass.LastAttacker);
IsAutomatic = scp079Recontainer._activatorGlass.LastAttacker.IsSet;
}

Expand All @@ -45,12 +45,12 @@ public RecontainedEventArgs(Player player, PlayerRoles.PlayableScps.Scp079.Scp07
/// <summary>
/// Gets the instance that handle SCP-079 recontained proccess.
/// </summary>
public PlayerRoles.PlayableScps.Scp079.Scp079Recontainer Scp079Recontainer { get; }
public PlayerRoles.PlayableScps.Scp079.Scp079Recontainer Recontainer { get; }

/// <summary>
/// Gets the player that recontained SCP-079.
/// </summary>
public Player PlayerWhoRecontainedScp079DoNotKeepThisNAmeOKAYYYY { get; }
public Player Attacker { get; }

/// <summary>
/// Gets a value indicating whether or not the recontained has been made automatically or by triggering the proccess.
Expand Down

0 comments on commit 608bbcd

Please sign in to comment.