Fix passing missing parameter

This commit is contained in:
Matt 2020-08-03 00:46:44 +02:00
parent 28dcaeae2f
commit 07b343813a
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ public:
void QueuePacket(const NetworkPacket& packet, bool front = false) void QueuePacket(const NetworkPacket& packet, bool front = false)
{ {
auto copy = packet; auto copy = packet;
return QueuePacket(std::move(copy)); return QueuePacket(std::move(copy), front);
} }
void SendQueuedPackets(); void SendQueuedPackets();