ADDED NEW TYPES TO RANDOM GAME
LOWERCASE_ALPHA (all lowercase letters)
UPPERCASE_ALPHA (all uppercase letters)
HEXADECIMAL (hexadecimal chars: 0123456789ABCDEF)
CUSTOM (Uses whatever is at 'custom_characters')
A new field inside config.yml in the 'random' game section has been added which is 'custom_characters'. It will only be used if the chosen type is "CUSTOM". Should not give any problems if you're not using it and it's not there.
New look:
Code (YAML):
#Types available: ALPHA (letters), ALPHANUMERIC (letters and numbers), NUMERIC (numbers), SYMBOLIC (symbols),
#LOWERCASE_ALPHA (all lowercase letters), UPPERCASE_ALPHA (all uppercase letters), HEXADECIMAL (hexadecimal chars: 0123456789ABCDEF)
#CUSTOM (Uses whatever is at 'custom_characters')
character_type
: ALPHANUMERIC
#Only if type is "CUSTOM" this line will be used
custom_characters
: 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'