Skip to content

Commit

Permalink
Update Extensions.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
DGvagabond committed Mar 14, 2021
1 parent 08fe60e commit d1e4fb0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Extensions.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using Exiled.API.Features;
using SCP_343.API;
using scp035.API;
using SCP999X;

namespace SCP008X
{
Expand All @@ -23,12 +24,11 @@ public static bool Gun(this ItemType item)
}
}

public static bool IsSerpentsHand(this Player player) =>
SerpentsHand.API.SerpentsHand.GetSHPlayers().Contains(player);
public static bool IsSerpentsHand(this Player player) => SerpentsHand.API.SerpentsHand.GetSHPlayers().Contains(player);

public static bool IsScp035(this Player player) => Scp035Data.GetScp035() == player;

public static bool IsScp999(this Player player) => SCP999API.GetScp999() == player;
public static bool IsScp999(this Player player) => Scp999API.GetScp999() == player;

public static bool IsScp343(this Player player) => SCP_343Data.TryGet343() == player;
}
Expand Down

0 comments on commit d1e4fb0

Please sign in to comment.