SFTtech / openage

Free (as in freedom) open source clone of the Age of Empires II engine 🚀
http://openage.dev
Other
12.51k stars 1.11k forks source link

Windows Build: Python Command Requiring --modpacks Argument #1623

Closed brett-hamilton closed 4 months ago

brett-hamilton commented 4 months ago

System Info

brett-hamilton commented 4 months ago

Follow-up: it seems like this argument --modpacks is being required in the file <openage directory>\build\openage\game\main.py lines 29-31. Thanks!

cli.add_argument(
        "--modpacks", nargs="+", required=True,
        help="list of modpacks to load")
heinezen commented 4 months ago

Yes, it is required because openage game is used to immediaely jump into the game. You can use openage main for a more beginner-friendly workflow that lets you convert assets and then start a game.

brett-hamilton commented 4 months ago

@heinezen I see, I'll use openage main first then. Thank you!