Skip to content

Commit 2c04cbb

Browse files
committed
Update 1.DZ.8.1
Fixed custom server_name unban
1 parent 332bc50 commit 2c04cbb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

EntWatchSharp/EntWatchSharp.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public partial class EntWatchSharp : BasePlugin
1818
public override string ModuleName => "EntWatchSharp";
1919
public override string ModuleDescription => "Notify players about entity interactions";
2020
public override string ModuleAuthor => "DarkerZ [RUS]";
21-
public override string ModuleVersion => "1.DZ.8";
21+
public override string ModuleVersion => "1.DZ.8.1";
2222

2323
public override void OnAllPluginsLoaded(bool hotReload)
2424
{

EntWatchSharp/Events.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ private void TimerRetry()
146146
private void TimerUnban()
147147
{
148148
string sServerName = EW.g_Scheme.server_name;
149-
if (!string.IsNullOrEmpty(sServerName)) { sServerName = "Zombies Server"; }
149+
if (string.IsNullOrEmpty(sServerName)) { sServerName = "Zombies Server"; }
150150

151151
EbanDB.OfflineUnban(sServerName);
152152

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.DZ.8
1+
1.DZ.8.1

0 commit comments

Comments
 (0)