remove DinoSampling stuff

This commit is contained in:
2020-04-05 13:10:13 +02:00
parent 5b82e7965d
commit ad07c1da8f
5 changed files with 12 additions and 91 deletions
@@ -29,6 +29,6 @@ public class CardDeck {
nextInt(int bound) returns random int value from (inclusive) 0
and EXCLUSIVE! bound
*/
return cards.get(RNG.getRandom().nextInt(cards.size()));
return cards.get(RNG.getRandomEnv().nextInt(cards.size()));
}
}