diff --git a/src/network/room.cpp b/src/network/room.cpp index d6b032baf..7184ca4b1 100644 --- a/src/network/room.cpp +++ b/src/network/room.cpp @@ -195,7 +195,7 @@ void Room::RoomImpl::StartLoop() { void Room::RoomImpl::HandleJoinRequest(const ENetEvent* event) { Packet packet; packet.Append(event->packet->data, event->packet->dataLength); - packet.IgnoreBytes(sizeof(u8)); // Igonore the message type + packet.IgnoreBytes(sizeof(u8)); // Ignore the message type std::string nickname; packet >> nickname; @@ -423,7 +423,7 @@ void Room::RoomImpl::HandleChatPacket(const ENetEvent* event) { Packet in_packet; in_packet.Append(event->packet->data, event->packet->dataLength); - in_packet.IgnoreBytes(sizeof(u8)); // Igonore the message type + in_packet.IgnoreBytes(sizeof(u8)); // Ignore the message type std::string message; in_packet >> message; auto CompareNetworkAddress = [event](const Member member) -> bool { @@ -465,7 +465,7 @@ void Room::RoomImpl::HandleGameNamePacket(const ENetEvent* event) { Packet in_packet; in_packet.Append(event->packet->data, event->packet->dataLength); - in_packet.IgnoreBytes(sizeof(u8)); // Igonore the message type + in_packet.IgnoreBytes(sizeof(u8)); // Ignore the message type GameInfo game_info; in_packet >> game_info.name; in_packet >> game_info.id;