Fix automapper randomization

This commit is contained in:
Jordy Ruiz 2019-01-19 10:12:32 +01:00
parent 9efa13c036
commit 2f703babbb

View file

@ -37,7 +37,7 @@ public:
static bool Random(int Value)
{
return (((random_int() + Value) % 2) == 1);
return (random_int() % Value) == 0;
}
static const char *GetTypeName(int Type)