[9397] Fixed unexpected rounding in healamount = healamount * int32(TakenTotalMod);

This commit is contained in:
VladimirMangos 2010-02-16 00:24:28 +03:00
parent 9e4829ecef
commit f9db93e78b
7 changed files with 41 additions and 40 deletions

View file

@ -545,7 +545,7 @@ int WorldSocket::handle_input_missing_data (void)
recv_size);
if (n <= 0)
return n;
return (int)n;
message_block.wr_ptr (n);