Skip to content

Commit

Permalink
fix ClientSideNetUdp::sendTo
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathSpirit committed Jan 5, 2025
1 parent e9c73e8 commit 1f55d8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/FastEngine/network/C_server.inl
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ void ClientSideNetUdp::sendTo(TransmissionPacketPtr& pck, Identity const& id)

std::scoped_lock const lock(this->_g_mutexFlux);
TPacket packet = pck->packet();
this->g_socket.send(pck->packet());
this->g_socket.send(packet);
}

template<class TPacket>
Expand Down

0 comments on commit 1f55d8d

Please sign in to comment.