You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 28, 2018. It is now read-only.
This hasn't been implemented in v1.2.0 yet because of the whole overhaul related to the new mod loading method. This will be implemented in a future version of the client.
Can you add a command line option to start the client with development mods only?
(without changing the mod settings (enabled/disabled))
e.g. --mods-in-development
It would improve my mod development workflow.
[Option("mods-in-development")] public bool ModsInDevelopment { get; set; }
for file, CommandLineOptions.cs
if (!(isDevelopment && option.ModsInDevelopment) || !isDevelopment) if (!isDevelopment && !isEnabled && File.Exists(binBuildPath)) continue;
for file, ModLoader.Main.cs
The text was updated successfully, but these errors were encountered: