Skip to content

Commit

Permalink
Remove evil word
Browse files Browse the repository at this point in the history
  • Loading branch information
floralrainfall committed Jul 25, 2023
1 parent d08473d commit c7f6039
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Projects/Engine/Source/Network/ArkNet/Packets.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ namespace ArkNet::Packets
void OpenConnectionRequestPacket::serialize(char* output, int length)
{
ArkStream stream = ArkStream(output, length);
stream.writeString("You are a asshole.");
stream.writeString("You are a friend :)\n");
}

void OpenConnectionRequestPacket::deserialize(char* input, int length)
{
ArkStream stream = ArkStream(input, length);
printf("%s\n",stream.readString().c_str());
printf("%s",stream.readString().c_str());
}
};

0 comments on commit c7f6039

Please sign in to comment.