mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-07-12 04:58:34 +00:00
fix: remove byte type alias
This commit is contained in:
@@ -144,16 +144,16 @@ void LoginPacket::write(DataOutputStream *dos) //throws IOException
|
||||
}
|
||||
dos->writeLong(seed);
|
||||
dos->writeInt(gameType);
|
||||
dos->writeByte((byte)dimension);
|
||||
dos->writeByte((byte)mapHeight);
|
||||
dos->writeByte((byte)maxPlayers);
|
||||
dos->writeByte((uint8_t)dimension);
|
||||
dos->writeByte((uint8_t)mapHeight);
|
||||
dos->writeByte((uint8_t)maxPlayers);
|
||||
dos->writePlayerUID(m_offlineXuid);
|
||||
dos->writePlayerUID(m_onlineXuid);
|
||||
dos->writeBoolean(m_friendsOnlyUGC);
|
||||
dos->writeInt(m_ugcPlayersVersion);
|
||||
dos->writeByte((byte)difficulty);
|
||||
dos->writeByte((uint8_t)difficulty);
|
||||
dos->writeInt(m_multiplayerInstanceId);
|
||||
dos->writeByte((byte)m_playerIndex);
|
||||
dos->writeByte((uint8_t)m_playerIndex);
|
||||
dos->writeInt(m_playerSkinId);
|
||||
dos->writeInt(m_playerCapeId);
|
||||
dos->writeBoolean(m_isGuest);
|
||||
|
||||
Reference in New Issue
Block a user