Merge branch 'refs/heads/master' into feat/postgresql-database

This commit is contained in:
P0nk
2024-09-13 21:29:50 +02:00
3 changed files with 39 additions and 2 deletions

View File

@@ -35,6 +35,6 @@ public class Randomizer {
}
public static int rand(final int lbound, final int ubound) {
return (int) ((rand.nextDouble() * (ubound - lbound + 1)) + lbound);
return ((int) (rand.nextDouble() * (ubound - lbound + 1))) + lbound;
}
}