RNG Chance utils

This commit is contained in:
Daniel Mills 2020-10-31 08:29:59 -04:00
parent 11703afd6b
commit 98889780b9

View File

@ -178,4 +178,8 @@ public class RNG extends Random
{
return si(Short.MIN_VALUE, Short.MAX_VALUE);
}
public boolean chance(double chance) {
return chance >= nextDouble();
}
}