What's new
  • Visit Rebornbuddy
  • Visit Resources
  • Visit API Documentation
  • Visit Downloads
  • Visit Portal
  • Visit Panda Profiles
  • Visit LLamamMagic

PluginSettings.cs Altering RiftCounts

d90

New Member
Joined
Mar 4, 2016
Messages
3
Reaction score
0
Is there any reason I shouldn't alter the following to allow different numbers of rifts to be run?

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" }; }
        }
 
Back
Top