Increase randomness by updating the random's seed every minute
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
package wtf.beatrice.hidekobot.runnables;
|
||||
|
||||
import wtf.beatrice.hidekobot.Cache;
|
||||
|
||||
public class RandomSeedTask implements Runnable
|
||||
{
|
||||
|
||||
@Override
|
||||
public void run() {
|
||||
Cache.setRandomSeed(System.currentTimeMillis());
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user