4th batch

This commit is contained in:
Leah Anderson
2026-03-02 12:00:59 -07:00
parent 9cfc2e5b16
commit 79c1737c34
33 changed files with 94 additions and 93 deletions

View File

@@ -19,7 +19,7 @@ void ClientCommandPacket::read(DataInputStream *dis)
void ClientCommandPacket::write(DataOutputStream *dos)
{
dos->writeByte((std::byte)action & (std::byte)0xff);
dos->writeByte((byte)action & (byte)0xff);
}
void ClientCommandPacket::handle(PacketListener *listener)