diff --git a/Projects/Server/Attributes.cs b/Projects/Server/Attributes.cs index fe626f0cf..1886c93bb 100644 --- a/Projects/Server/Attributes.cs +++ b/Projects/Server/Attributes.cs @@ -73,12 +73,12 @@ namespace Server if (objs.Length == 0) { - return 0; + return 50; } if (!(objs[0] is CallPriorityAttribute attr)) { - return 0; + return 50; } return attr.Priority; diff --git a/Projects/UOContent/Commands/HelpInfo.cs b/Projects/UOContent/Commands/HelpInfo.cs index 2b9985748..80ee82720 100644 --- a/Projects/UOContent/Commands/HelpInfo.cs +++ b/Projects/UOContent/Commands/HelpInfo.cs @@ -12,7 +12,6 @@ namespace Server.Commands public static List SortedHelpInfo { get; private set; } = new(); - [CallPriority(100)] public static void Initialize() { CommandSystem.Register("HelpInfo", AccessLevel.Player, HelpInfo_OnCommand); diff --git a/Projects/UOContent/Network/ConnectUO.cs b/Projects/UOContent/Network/ConnectUO.cs index 93b7a1091..7f2862269 100644 --- a/Projects/UOContent/Network/ConnectUO.cs +++ b/Projects/UOContent/Network/ConnectUO.cs @@ -40,7 +40,7 @@ namespace Server.Network public static void Configure() { var enabled = ServerConfiguration.GetOrUpdateSetting("connectuo.enabled", true); - var token = ServerConfiguration.GetOrUpdateSetting("connectuo.token", null); + var token = ServerConfiguration.GetOrUpdateSetting("connectuo.token", ""); if (enabled) { diff --git a/Projects/UOContent/Network/UOGateway.cs b/Projects/UOContent/Network/UOGateway.cs index 6e1d0cd51..f3b6c937c 100644 --- a/Projects/UOContent/Network/UOGateway.cs +++ b/Projects/UOContent/Network/UOGateway.cs @@ -17,7 +17,6 @@ using System; using System.Buffers; using System.Text; using Server.Misc; -using Server.Text; namespace Server.Network {