Make random more random than the google bot

This commit is contained in:
Runebaas 2018-02-14 23:01:28 +01:00
parent cabf942362
commit acc8947782
No known key found for this signature in database
GPG key ID: 2677AF508D0300D6
11 changed files with 20 additions and 43 deletions

View file

@ -17,9 +17,9 @@ namespace Geekbot.net.Lib.Media
private string[] _pumpkinImages;
private string[] _turtlesImages;
public MediaProvider(Random rnd, IGeekbotLogger logger)
public MediaProvider(IGeekbotLogger logger)
{
_random = rnd;
_random = new Random();
_logger = logger;
logger.Information("Geekbot", "Loading Media Files");