Is there any reason I shouldn't alter the following to allow different numbers of rifts to be run?
Becomes something like
Code:
public List<string> RiftCounts
{
get { return new List<string> { "Infinity", "1", "5","10", "20", "50" }; }
}
Becomes something like
Code:
public List<string> RiftCounts
{
get { return new List<string> { "Infinity", "1", "3", "5", "10", "18", "20", "47, "50", "72" }; }
}






