fix: Fixes missing ordinal string comparisons arguments. (#1431)
--------- Co-authored-by: Kamron Batman <3953314+kamronbatman@users.noreply.github.com>
This commit is contained in:
parent
8eb480bdf5
commit
d366e02251
6 changed files with 6 additions and 6 deletions
|
|
@ -81,7 +81,7 @@ public class GumpGrid : Gump
|
|||
}
|
||||
|
||||
//percent
|
||||
var percent = sizes[i].Replace("*", "");
|
||||
var percent = sizes[i].RemoveOrdinal("*");
|
||||
var size = sizes[i] != percent ? len / 100 * int.Parse(percent) : int.Parse(percent);
|
||||
|
||||
list.Add(new Swap { Index = i, Size = size });
|
||||
|
|
|
|||
|
|
@ -530,7 +530,7 @@ public static class Core
|
|||
#if DEBUG
|
||||
const bool idleCPU = true;
|
||||
#else
|
||||
var idleCPU = ServerConfiguration.GetOrUpdateSetting("core.enableIdleCPU", false);
|
||||
var idleCPU = ServerConfiguration.GetOrUpdateSetting("core.enableIdleCPU", false);
|
||||
#endif
|
||||
|
||||
long last = TickCount;
|
||||
|
|
|
|||
|
|
@ -401,7 +401,7 @@ public class SkillInfo
|
|||
DexGain = dexGain;
|
||||
IntGain = intGain;
|
||||
GainFactor = gainFactor;
|
||||
ProfessionSkillName = professionSkillName ?? Name.Replace(" ", "");
|
||||
ProfessionSkillName = professionSkillName ?? Name.RemoveOrdinal(" ");
|
||||
StatTotal = strScale + dexScale + intScale;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -84,7 +84,7 @@ public static class AssistantHandler
|
|||
|
||||
// Instead we are supporting razor community edition.
|
||||
var assistVersion = reader.ReadAscii();
|
||||
state.Assistant = assistVersion.Contains(' ') ? assistVersion : $"RazorCE {assistVersion}";
|
||||
state.Assistant = assistVersion.ContainsOrdinal(' ') ? assistVersion : $"RazorCE {assistVersion}";
|
||||
}
|
||||
|
||||
private static void HandshakeResponse(NetState state, CircularBufferReader reader, int packetLength)
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ namespace Server
|
|||
return true;
|
||||
}
|
||||
|
||||
var lowerName = name?.ToLowerInvariant().Replace(" ", "");
|
||||
var lowerName = name?.ToLowerInvariant().RemoveOrdinal(" ");
|
||||
|
||||
if (!string.IsNullOrEmpty(lowerName))
|
||||
{
|
||||
|
|
|
|||
|
|
@ -394,7 +394,7 @@ namespace Server.Saves
|
|||
if (files)
|
||||
{
|
||||
var fileName = new FileInfo(item).Name;
|
||||
name = fileName[..fileName.IndexOf('.')];
|
||||
name = fileName[..fileName.IndexOfOrdinal('.')];
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue