This adds a mod option parameter for specifying mod settings. The syntax is -o|--mod-option <acronym>_<setting>=<value>.
Example: dotnet run -- simulate osu 4697929 -m DT -m DA -o DT_speed_change=1.3 -o DA_overall_difficulty=1
Additionally, this PR removes the --output parameter as it was deemed unecessary (any shell allows you do write to a file via | or >) and used the -o parameter already.
Depends on #223
This adds a mod option parameter for specifying mod settings. The syntax is
-o|--mod-option <acronym>_<setting>=<value>
. Example:dotnet run -- simulate osu 4697929 -m DT -m DA -o DT_speed_change=1.3 -o DA_overall_difficulty=1
Additionally, this PR removes the
--output
parameter as it was deemed unecessary (any shell allows you do write to a file via|
or>
) and used the-o
parameter already.