10 lines
323 B
Python
10 lines
323 B
Python
#!/usr/bin/env python3
|
|
"""
|
|
Configuration settings for overwrought_master.py.
|
|
`mc_ver` is used literally when searching for an appropriate verison of
|
|
a mod to download. Should not include the minor version.
|
|
`modpack_name` is used for vanity purposes when naming the modpack.
|
|
"""
|
|
mc_ver = "1.12"
|
|
modpack_name = "motherlode1"
|