Merge branch 'main' into webSupport
This commit is contained in:
commit
f5fef07e0c
358 changed files with 2982 additions and 1498 deletions
|
|
@ -223,7 +223,7 @@ namespace Server.Network
|
|||
|
||||
private void SetPacketTime(int packetID)
|
||||
{
|
||||
if (packetID < 0 || packetID >= 0x100)
|
||||
if (packetID is < 0 or >= 0x100)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
|
@ -233,7 +233,7 @@ namespace Server.Network
|
|||
|
||||
public long GetPacketDelay(int packetID)
|
||||
{
|
||||
if (packetID < 0 || packetID >= 0x100)
|
||||
if (packetID is < 0 or >= 0x100)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
|
@ -243,7 +243,7 @@ namespace Server.Network
|
|||
|
||||
private void UpdatePacketCount(int packetID)
|
||||
{
|
||||
if (packetID < 0 || packetID >= 0x100)
|
||||
if (packetID is < 0 or >= 0x100)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
|
@ -728,7 +728,7 @@ namespace Server.Network
|
|||
{
|
||||
reader.Advance((uint)packetLength);
|
||||
}
|
||||
else if (_parserState == ParserState.AwaitingPartialPacket || _parserState == ParserState.Throttled)
|
||||
else if (_parserState is ParserState.AwaitingPartialPacket or ParserState.Throttled)
|
||||
{
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -60,7 +60,7 @@ namespace Server.Network
|
|||
reader.ReadInt16(); // font
|
||||
var text = reader.ReadAsciiSafe().Trim();
|
||||
|
||||
if (text.Length <= 0 || text.Length > 128)
|
||||
if (text.Length is <= 0 or > 128)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
|
@ -97,7 +97,7 @@ namespace Server.Network
|
|||
var count = (value & 0xFFF0) >> 4;
|
||||
var hold = value & 0xF;
|
||||
|
||||
if (count < 0 || count > 50)
|
||||
if (count is < 0 or > 50)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
|
@ -141,7 +141,7 @@ namespace Server.Network
|
|||
|
||||
text = text.Trim();
|
||||
|
||||
if (text.Length <= 0 || text.Length > 128)
|
||||
if (text.Length is <= 0 or > 128)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue