mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-14 19:51:29 +00:00
Remove commented printf : %s ID: %i profile mismatch, not converting. PP %u - Profile Length %u \n
This commit is contained in:
parent
c33ac2981b
commit
f29ca568df
@ -1380,7 +1380,6 @@ bool Database::CheckDatabaseConvertPPDeblob(){
|
|||||||
}
|
}
|
||||||
/* Continue of PP Size does not match (Usually a created character never logged in) */
|
/* Continue of PP Size does not match (Usually a created character never logged in) */
|
||||||
else {
|
else {
|
||||||
// printf("%s ID: %i profile mismatch, not converting. PP %u - Profile Length %u \n", row2[2] ? row2[2] : "Unknown", character_id, sizeof(PlayerProfile_Struct), lengths);
|
|
||||||
std::cout << (row2[2] ? row2[2] : "Unknown") << " ID: " << character_id << " size mismatch. Expected Size: " << sizeof(Convert::PlayerProfile_Struct) << " Seen: " << lengths << std::endl;
|
std::cout << (row2[2] ? row2[2] : "Unknown") << " ID: " << character_id << " size mismatch. Expected Size: " << sizeof(Convert::PlayerProfile_Struct) << " Seen: " << lengths << std::endl;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@ -2182,7 +2181,6 @@ bool Database::CheckDatabaseConvertCorpseDeblob(){
|
|||||||
c_type = "Legacy";
|
c_type = "Legacy";
|
||||||
}
|
}
|
||||||
if (in_datasize != esize2 && in_datasize != esize1) {
|
if (in_datasize != esize2 && in_datasize != esize1) {
|
||||||
// std::cout << "[Error] in Corpse Size - OLD SIZE: " << esize1 << " SOF SIZE: " << esize2 << " db_blob_datasize: " << in_datasize << std::endl;
|
|
||||||
is_sof = false;
|
is_sof = false;
|
||||||
c_type = "NULL";
|
c_type = "NULL";
|
||||||
continue;
|
continue;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user