Skip to content
This repository has been archived by the owner on May 14, 2023. It is now read-only.

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
KarlOfDuty committed Feb 17, 2019
1 parent 1fab4d9 commit 1bfc743
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions VPNShield/VPNShield.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ namespace VPNShield
name = "VPNShield",
description = "Blocks users connecting using VPNs.",
id = "karlofduty.vpnshield",
version = "3.1.1",
version = "3.1.2",
SmodMajor = 3,
SmodMinor = 2,
SmodRevision = 2
SmodMinor = 3,
SmodRevision = 0
)]
public class VPNShield : Plugin
{
Expand Down Expand Up @@ -497,25 +497,21 @@ public void OnPlayerJoin(PlayerJoinEvent ev)
{
if (ev.Player.GetRankName() != "")
{
plugin.Info("Succeeded check.");
return;
}
if (plugin.whitelist.Contains(ev.Player.SteamId))
{
plugin.Info("Succeeded check.");
return;
}
if (plugin.CheckSteamAccount(ev))
{
plugin.Info("Succeeded check.");
return;
}
if (plugin.CheckVPN(ev))
{
plugin.Info("Succeeded check.");
return;
}
}).Start();
Expand Down
Binary file modified VPNShield/lib/Assembly-CSharp.dll
Binary file not shown.
Binary file modified VPNShield/lib/Smod2.dll
Binary file not shown.

0 comments on commit 1bfc743

Please sign in to comment.