Skip to content

Commit

Permalink
Fix broken bool decoder
Browse files Browse the repository at this point in the history
  • Loading branch information
patapancakes committed Nov 3, 2023
1 parent 23e03d4 commit 96c74dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/multiplayer/packet.h
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class S2CPacket : public Packet {
if (s == "1")
return true;
if (s == "0")
return true;
return false;
std::terminate();
}
};
Expand Down

0 comments on commit 96c74dd

Please sign in to comment.