Have you guys seen this? Sorry, been away from the thread today and a buddy sent me this I assume from Reddit.
How to Guarantee Exotic Weapons from Legendary Engrams:
https://youtu.be/yIhbYzru_b0
That's pretty funny.
It's well known that most algorithms that return random values usually do so based upon a seed that is determined by the current time.
Programmatically, whenever you create an instance of a Random object, it's seeded based on the current time, so if you create a Random object right after another, it's not unusual to see the same results when you pull a random number from it. This is usually resolved by using one instance of a Random object for everything.