mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 05:06:45 +01:00
Database conversion bug: Integral division in output format
This commit is contained in:
parent
06c9ea7068
commit
2aec4a69ea
@ -203,7 +203,7 @@ public final class Misc {
|
|||||||
|
|
||||||
public static void printProgress(int convertedUsers, int progressInterval, long startMillis) {
|
public static void printProgress(int convertedUsers, int progressInterval, long startMillis) {
|
||||||
if ((convertedUsers % progressInterval) == 0) {
|
if ((convertedUsers % progressInterval) == 0) {
|
||||||
mcMMO.p.getLogger().info(String.format("Conversion progress: %d users at %.2f users/second", convertedUsers, convertedUsers / ((System.currentTimeMillis() - startMillis) / TIME_CONVERSION_FACTOR)));
|
mcMMO.p.getLogger().info(String.format("Conversion progress: %d users at %.2f users/second", convertedUsers, convertedUsers / (double) ((System.currentTimeMillis() - startMillis) / TIME_CONVERSION_FACTOR)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user