So i found the line in my LOTF source that controls the blessing on drops.
I know this generates 1 random number between 1 and 7.
How would i make it so it cannot choose 2, 4 and 6?
Code:
Bless = (byte)General.Rand.Next(1, 7);
How would i make it so it cannot choose 2, 4 and 6?