Skip to content

Commit 9c67065

Browse files
committed
Updated to game version 0.79
- Fixed issue with /checkalts, auto appending wasn't a good idea after all
1 parent 3cb0828 commit 9c67065

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

source/BP-Essentials/Chat/Announce.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ private static void OnTime(object onetMan)
3333
var svManager = (SvManager)onetMan;
3434
foreach (var player in svManager.players)
3535
player.svPlayer.SendToSelf(Channel.Reliable, ClPacket.GameMessage, Announcements[AnnounceIndex]);
36-
Debug.Log(SetTimeStamp.Run() + "[INFO] Announcement made...");
36+
Debug.Log($"{SetTimeStamp.Run()}[INFO] Announcement made...");
3737
AnnounceIndex += 1;
3838
if (AnnounceIndex > Announcements.Length - 1)
3939
AnnounceIndex = 0;

source/BP-Essentials/Chat/Commands/Admin/CheckAlts.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@ public static bool Run(object oPlayer, string message)
2525
var arg2 = GetArgument.Run(2, false, true, message);
2626
if (arg1.Equals("ip", StringComparison.InvariantCultureIgnoreCase))
2727
{
28-
if (!arg2.StartsWith("::ffff:"))
29-
arg2 = "::ffff:" + arg2;
3028
var content = "Possible accounts using the IP " + arg2 + ":\r\n\r\n";
3129
var builder = new StringBuilder();
3230
builder.Append(content);

source/BP-Essentials/EssentialsVariables.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace BP_Essentials
77
{
88
public class EssentialsVariablesPlugin : EssentialsCorePlugin
99
{
10-
public const string Version = "2.4.0";
10+
public const string Version = "2.4.1";
1111

1212
// Generic Constants
1313
public const string FileDirectory = "Essentials/";

0 commit comments

Comments
 (0)