Core: SOme code cleanup, more to follow.

This commit is contained in:
hondacrx
2021-03-20 22:48:48 -04:00
parent 62f554f2e0
commit 62ec699ec6
318 changed files with 5080 additions and 5125 deletions
@@ -75,7 +75,7 @@ namespace Game.Networking.Packets
}
}
public List<GMTicketCase> Cases = new List<GMTicketCase>();
public List<GMTicketCase> Cases = new();
public struct GMTicketCase
{
@@ -252,7 +252,7 @@ namespace Game.Networking.Packets
ReportLineIndex.Value = data.ReadUInt32();
}
public List<SupportTicketChatLine> Lines = new List<SupportTicketChatLine>();
public List<SupportTicketChatLine> Lines = new();
public Optional<uint> ReportLineIndex;
}
@@ -316,7 +316,7 @@ namespace Game.Networking.Packets
public class SupportTicketHorusChatLog
{
public List<SupportTicketHorusChatLine> Lines = new List<SupportTicketHorusChatLine>();
public List<SupportTicketHorusChatLine> Lines = new();
public void Read(WorldPacket data)
{