2019-06-02 15:27:13 -04:00
|
|
|
#!/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.
|
2019-06-02 18:56:52 -04:00
|
|
|
`password` is the password used for uploading to the remote server.
|
|
|
|
`remote_addr` is the address of the remote Overwrought server.
|
2019-06-02 15:27:13 -04:00
|
|
|
"""
|
|
|
|
mc_ver = "1.12"
|
|
|
|
modpack_name = "motherlode1"
|
2019-06-02 18:56:52 -04:00
|
|
|
password = r"""PASSWORD"""
|
|
|
|
remote_addr = "https://stream.steelbea.me/overwrought"
|