Core/Misc: Change all unix time columns in character database to bigint (signed)
Port From (https://github.com/TrinityCore/TrinityCore/commit/d29dd1eeb5c52dc76bd741fe1ee0e875c416b8e7)
This commit is contained in:
@@ -224,9 +224,9 @@ namespace Game.Networking.Packets
|
||||
Text = data.ReadString(data.ReadBits<uint>(12));
|
||||
}
|
||||
|
||||
public SupportTicketChatLine(uint timestamp, string text)
|
||||
public SupportTicketChatLine(long timestamp, string text)
|
||||
{
|
||||
Timestamp = timestamp;
|
||||
Timestamp = (uint)timestamp;
|
||||
Text = text;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user