cleanup: flatten dead branches in world io level network and stats

This commit is contained in:
MatthewBeshay
2026-03-26 20:53:52 +11:00
parent 12ff12a263
commit 8d3c504ee6
93 changed files with 274 additions and 3246 deletions

View File

@@ -255,12 +255,5 @@ void DataOutputStream::writeUTF(const std::wstring& str) {
// 4J Added
void DataOutputStream::writePlayerUID(PlayerUID player) {
#if 0 || 0 || 0
for (int idPos = 0; idPos < sizeof(PlayerUID); idPos++)
writeByte(((char*)&player)[idPos]);
#elif 0
writeUTF(player.toString());
#else
writeLong(player);
#endif // PS3
}