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

@@ -99,9 +99,9 @@ void ExplodePacket::write(DataOutputStream *dos) //throws IOException
int xx = tp.x-xp;
int yy = tp.y-yp;
int zz = tp.z-zp;
dos->writeByte((std::byte)xx);
dos->writeByte((std::byte)yy);
dos->writeByte((std::byte)zz);
dos->writeByte((byte)xx);
dos->writeByte((byte)yy);
dos->writeByte((byte)zz);
}
}